example-data.com

brands / #32

Sanford, Reynolds and Hoppe

Sanford, Reynolds and Hoppe

Founded
1955
Location
MA

Profound attitude-oriented implementation

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/brands/32"
)
brand = res.json()
{
  "id": 32,
  "name": "Sanford, Reynolds and Hoppe",
  "slug": "sanford-reynolds-and-hoppe-32",
  "description": "Profound attitude-oriented implementation",
  "logoUrl": "https://picsum.photos/seed/brand-32/200/200",
  "website": null,
  "foundedYear": 1955,
  "headquartersCountryAlpha2": "MA",
  "createdAt": "2025-06-18T14:40:36.464Z"
}
Draftbit