example-data.com

brands / #37

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/brands/37"
)
brand = res.json()
{
  "id": 37,
  "name": "Graham LLC",
  "slug": "graham-llc-37",
  "description": "Intuitive client-server support",
  "logoUrl": "https://picsum.photos/seed/brand-37/200/200",
  "website": "https://www.graham-llc.com",
  "foundedYear": 2023,
  "headquartersCountryAlpha2": "PH",
  "createdAt": "2019-07-11T19:18:06.658Z"
}
Draftbit