example-data.com

brands / #20

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/brands/20"
)
brand = res.json()
{
  "id": 20,
  "name": "Ward LLC",
  "slug": "ward-llc-20",
  "description": "Customer-focused reciprocal middleware",
  "logoUrl": "https://picsum.photos/seed/brand-20/200/200",
  "website": "https://www.ward-llc.com",
  "foundedYear": 2013,
  "headquartersCountryAlpha2": "CN",
  "createdAt": "2024-03-07T04:41:31.607Z"
}
Draftbit