example-data.com

brands / #45

Component variants

curl -sS \
  "https://example-data.com/api/v1/brands/45" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/brands/45"
);
const brand = await res.json();
import type { Brand } from "https://example-data.com/types/brands.d.ts";

const res = await fetch(
  "https://example-data.com/api/v1/brands/45"
);
const brand = (await res.json()) as Brand;
import requests

res = requests.get(
    "https://example-data.com/api/v1/brands/45"
)
brand = res.json()
{
  "id": 45,
  "name": "Braun, Strosin and Terry",
  "slug": "braun-strosin-and-terry-45",
  "description": "Advanced disintermediate system engine",
  "logoUrl": "https://picsum.photos/seed/brand-45/200/200",
  "website": "https://www.braun-strosin-and-terry.com",
  "foundedYear": 1948,
  "headquartersCountryAlpha2": "IE",
  "createdAt": "2018-05-31T12:51:03.139Z"
}
Draftbit