example-data.com

brands / #48

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/brands/48"
)
brand = res.json()
{
  "id": 48,
  "name": "Volkman - Price",
  "slug": "volkman-price-48",
  "description": "Virtual static collaboration",
  "logoUrl": "https://picsum.photos/seed/brand-48/200/200",
  "website": "https://www.volkman-price.com",
  "foundedYear": 1997,
  "headquartersCountryAlpha2": "CH",
  "createdAt": "2020-05-30T16:40:23.628Z"
}
Draftbit