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