example-data.com

brands / #25

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/brands/25"
)
brand = res.json()
{
  "id": 25,
  "name": "Wehner, O'Hara and Ferry",
  "slug": "wehner-o-hara-and-ferry-25",
  "description": "Sharable responsive knowledge user",
  "logoUrl": "https://picsum.photos/seed/brand-25/200/200",
  "website": "https://www.wehner-o-hara-and-ferry.com",
  "foundedYear": 2011,
  "headquartersCountryAlpha2": "AU",
  "createdAt": "2018-01-06T20:58:27.745Z"
}
Draftbit