Sanford, Reynolds and Hoppe
- Founded
- 1955
- Location
- MA
Profound attitude-oriented implementation
Overview
brands / #32
Profound attitude-oriented implementation
Request
curl example
curl -sS \ "https://example-data.com/api/v1/brands/32" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/brands/32" ); const brand = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/brands.d.ts https://example-data.com/types/brands.d.ts
import type { Brand } from "./types/brands";
const res = await fetch(
"https://example-data.com/api/v1/brands/32"
);
const brand = (await res.json()) as Brand; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/brands/32"
)
brand = res.json() Response
{
"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"
}