example-data.com

brands / #11

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/brands/11"
)
brand = res.json()
{
  "id": 11,
  "name": "Lynch, Welch and Casper",
  "slug": "lynch-welch-and-casper-11",
  "description": "Business-focused systematic hierarchy",
  "logoUrl": "https://picsum.photos/seed/brand-11/200/200",
  "website": "https://www.lynch-welch-and-casper.com",
  "foundedYear": 1980,
  "headquartersCountryAlpha2": "IN",
  "createdAt": "2025-08-19T21:02:30.919Z"
}
Draftbit