Kilback, O'Conner and Nikolaus
- Founded
- 1931
- Location
- IE
Polarised incremental toolset
Overview
brands / #4
Polarised incremental toolset
Request
curl example
curl -sS \ "https://example-data.com/api/v1/brands/4" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/brands/4" ); 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/4"
);
const brand = (await res.json()) as Brand; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/brands/4"
)
brand = res.json() Response
{
"id": 4,
"name": "Kilback, O'Conner and Nikolaus",
"slug": "kilback-o-conner-and-nikolaus-4",
"description": "Polarised incremental toolset",
"logoUrl": "https://picsum.photos/seed/brand-4/200/200",
"website": "https://example.com/brands/kilback-o-conner-and-nikolaus",
"foundedYear": 1931,
"headquartersCountryAlpha2": "IE",
"createdAt": "2026-03-06T12:40:32.550Z"
}