example-data.com

brands / #29

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/brands/29"
)
brand = res.json()
{
  "id": 29,
  "name": "Olson and Sons",
  "slug": "olson-and-sons-29",
  "description": "Balanced mission-critical neural-net",
  "logoUrl": "https://picsum.photos/seed/brand-29/200/200",
  "website": "https://www.olson-and-sons.com",
  "foundedYear": 1953,
  "headquartersCountryAlpha2": "EG",
  "createdAt": "2023-08-04T15:15:27.392Z"
}
Draftbit