Gleichner Inc
- Founded
- 1933
- Website
- https://www.gleichner-inc.com
- Location
- AT
Upgradable client-driven contingency
brands / #16
Upgradable client-driven contingency
curl -sS \
"https://example-data.com/api/v1/brands/16" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/brands/16"
);
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/16"
);
const brand = (await res.json()) as Brand;import requests
res = requests.get(
"https://example-data.com/api/v1/brands/16"
)
brand = res.json() {
"id": 16,
"name": "Gleichner Inc",
"slug": "gleichner-inc-16",
"description": "Upgradable client-driven contingency",
"logoUrl": "https://picsum.photos/seed/brand-16/200/200",
"website": "https://www.gleichner-inc.com",
"foundedYear": 1933,
"headquartersCountryAlpha2": "AT",
"createdAt": "2025-01-19T11:04:21.649Z"
}