Heller Inc
- Founded
- 1946
- Website
- https://www.heller-inc.com
- Location
- DK
Expanded attitude-oriented success
brands / #47
Expanded attitude-oriented success
curl -sS \
"https://example-data.com/api/v1/brands/47" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/brands/47"
);
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/47"
);
const brand = (await res.json()) as Brand;import requests
res = requests.get(
"https://example-data.com/api/v1/brands/47"
)
brand = res.json() {
"id": 47,
"name": "Heller Inc",
"slug": "heller-inc-47",
"description": "Expanded attitude-oriented success",
"logoUrl": "https://picsum.photos/seed/brand-47/200/200",
"website": "https://www.heller-inc.com",
"foundedYear": 1946,
"headquartersCountryAlpha2": "DK",
"createdAt": "2017-05-02T10:05:17.400Z"
}