Feest, Treutel and Bashirian
- Founded
- 1932
- Location
- DK
Diverse user-facing support
brands / #30
Diverse user-facing support
curl -sS \
"https://example-data.com/api/v1/brands/30" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/brands/30"
);
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/30"
);
const brand = (await res.json()) as Brand;import requests
res = requests.get(
"https://example-data.com/api/v1/brands/30"
)
brand = res.json() {
"id": 30,
"name": "Feest, Treutel and Bashirian",
"slug": "feest-treutel-and-bashirian-30",
"description": "Diverse user-facing support",
"logoUrl": "https://picsum.photos/seed/brand-30/200/200",
"website": "https://www.feest-treutel-and-bashirian.com",
"foundedYear": 1932,
"headquartersCountryAlpha2": "DK",
"createdAt": "2019-09-29T08:42:30.119Z"
}