example-data.com

brands / #6

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/brands/6"
)
brand = res.json()
{
  "id": 6,
  "name": "Fay Group",
  "slug": "fay-group-6",
  "description": "Virtual motivating structure",
  "logoUrl": "https://picsum.photos/seed/brand-6/200/200",
  "website": "https://www.fay-group.com",
  "foundedYear": 1951,
  "headquartersCountryAlpha2": "FJ",
  "createdAt": "2019-10-03T12:34:22.710Z"
}
Draftbit