Haag, Oberbrunner and Mills
- Founded
- 2013
- Location
- NO
Integrated resilient model
brands / #34
Integrated resilient model
curl -sS \
"https://example-data.com/api/v1/brands/34" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/brands/34"
);
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/34"
);
const brand = (await res.json()) as Brand;import requests
res = requests.get(
"https://example-data.com/api/v1/brands/34"
)
brand = res.json() {
"id": 34,
"name": "Haag, Oberbrunner and Mills",
"slug": "haag-oberbrunner-and-mills-34",
"description": "Integrated resilient model",
"logoUrl": "https://picsum.photos/seed/brand-34/200/200",
"website": "https://www.haag-oberbrunner-and-mills.com",
"foundedYear": 2013,
"headquartersCountryAlpha2": "NO",
"createdAt": "2017-12-20T01:18:36.581Z"
}