Kulas, Treutel and Zboncak
- Founded
- 1952
- Location
- CO
Face to face immersive monitoring
Overview
brands / #17
Face to face immersive monitoring
Request
curl example
curl -sS \ "https://example-data.com/api/v1/brands/17" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/brands/17" ); 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/17"
);
const brand = (await res.json()) as Brand; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/brands/17"
)
brand = res.json() Response
{
"id": 17,
"name": "Kulas, Treutel and Zboncak",
"slug": "kulas-treutel-and-zboncak-17",
"description": "Face to face immersive monitoring",
"logoUrl": "https://picsum.photos/seed/brand-17/200/200",
"website": "https://example.com/brands/kulas-treutel-and-zboncak",
"foundedYear": 1952,
"headquartersCountryAlpha2": "CO",
"createdAt": "2025-01-08T06:39:09.191Z"
}