Heller Inc
- Founded
- 1946
- Location
- DK
Expanded attitude-oriented success
Overview
brands / #47
Expanded attitude-oriented success
Request
curl example
curl -sS \ "https://example-data.com/api/v1/brands/47" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/brands/47" ); 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/47"
);
const brand = (await res.json()) as Brand; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/brands/47"
)
brand = res.json() Response
{
"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://example.com/brands/heller-inc",
"foundedYear": 1946,
"headquartersCountryAlpha2": "DK",
"createdAt": "2017-05-02T10:05:17.400Z"
}