example-data.com

brands / #49

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/brands/49"
)
brand = res.json()
{
  "id": 49,
  "name": "Herzog Group",
  "slug": "herzog-group-49",
  "description": "Public-key modular customer loyalty",
  "logoUrl": "https://picsum.photos/seed/brand-49/200/200",
  "website": "https://www.herzog-group.com",
  "foundedYear": 2005,
  "headquartersCountryAlpha2": "CL",
  "createdAt": "2017-06-12T05:44:28.118Z"
}
Draftbit