example-data.com

brands / #28

Component variants

curl -sS \
  "https://example-data.com/api/v1/brands/28" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/brands/28"
);
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/28"
);
const brand = (await res.json()) as Brand;
import requests

res = requests.get(
    "https://example-data.com/api/v1/brands/28"
)
brand = res.json()
{
  "id": 28,
  "name": "Abbott - Rath",
  "slug": "abbott-rath-28",
  "description": "Seamless reciprocal collaboration",
  "logoUrl": "https://picsum.photos/seed/brand-28/200/200",
  "website": "https://www.abbott-rath.com",
  "foundedYear": 1929,
  "headquartersCountryAlpha2": "KR",
  "createdAt": "2024-09-25T09:26:49.507Z"
}
Draftbit