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