Huel LLC
- Founded
- 1980
- Location
- PH
Distributed stable support
brands / #44
Distributed stable support
curl -sS \
"https://example-data.com/api/v1/brands/44" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/brands/44"
);
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/44"
);
const brand = (await res.json()) as Brand;import requests
res = requests.get(
"https://example-data.com/api/v1/brands/44"
)
brand = res.json() {
"id": 44,
"name": "Huel LLC",
"slug": "huel-llc-44",
"description": "Distributed stable support",
"logoUrl": "https://picsum.photos/seed/brand-44/200/200",
"website": null,
"foundedYear": 1980,
"headquartersCountryAlpha2": "PH",
"createdAt": "2016-10-08T18:50:32.184Z"
}