Gleichner Inc
- Founded
- 1933
- Location
- AT
Upgradable client-driven contingency
Overview
brands / #16
Upgradable client-driven contingency
Request
curl example
curl -sS \ "https://example-data.com/api/v1/brands/16" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/brands/16" ); 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/16"
);
const brand = (await res.json()) as Brand; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/brands/16"
)
brand = res.json() Response
{
"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://example.com/brands/gleichner-inc",
"foundedYear": 1933,
"headquartersCountryAlpha2": "AT",
"createdAt": "2025-01-19T11:04:21.649Z"
}