Hammes - Koelpin
- Founded
- 1962
- Location
- IL
Devolved responsive structure
Overview
brands / #10
Devolved responsive structure
Request
curl example
curl -sS \ "https://example-data.com/api/v1/brands/10" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/brands/10" ); 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/10"
);
const brand = (await res.json()) as Brand; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/brands/10"
)
brand = res.json() Response
{
"id": 10,
"name": "Hammes - Koelpin",
"slug": "hammes-koelpin-10",
"description": "Devolved responsive structure",
"logoUrl": "https://picsum.photos/seed/brand-10/200/200",
"website": "https://example.com/brands/hammes-koelpin",
"foundedYear": 1962,
"headquartersCountryAlpha2": "IL",
"createdAt": "2025-09-26T22:59:12.763Z"
}