example-data.com

brands / #39

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/brands/39"
)
brand = res.json()
{
  "id": 39,
  "name": "Brekke Inc",
  "slug": "brekke-inc-39",
  "description": "Streamlined value-added projection",
  "logoUrl": "https://picsum.photos/seed/brand-39/200/200",
  "website": "https://www.brekke-inc.com",
  "foundedYear": 2017,
  "headquartersCountryAlpha2": "NG",
  "createdAt": "2016-10-21T21:22:56.155Z"
}
Draftbit