example-data.com

brands / #22

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/brands/22"
)
brand = res.json()
{
  "id": 22,
  "name": "Stiedemann - Price",
  "slug": "stiedemann-price-22",
  "description": "Customer-focused systematic support",
  "logoUrl": "https://picsum.photos/seed/brand-22/200/200",
  "website": "https://www.stiedemann-price.com",
  "foundedYear": 2023,
  "headquartersCountryAlpha2": "PK",
  "createdAt": "2026-05-08T05:23:35.598Z"
}
Draftbit