example-data.com

brands / #10

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/brands/10"
)
brand = res.json()
{
  "id": 10,
  "name": "Hammes - Koelpin",
  "slug": "hammes-koelpin-10",
  "description": "Devolved responsive structure",
  "logoUrl": "https://picsum.photos/seed/brand-10/200/200",
  "website": "https://www.hammes-koelpin.com",
  "foundedYear": 1962,
  "headquartersCountryAlpha2": "IL",
  "createdAt": "2025-09-26T22:59:12.763Z"
}
Draftbit