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