Harvey - Watsica
- Founded
- 1933
- Website
- https://www.harvey-watsica.com
- Location
- CN
Reverse-engineered systemic throughput
brands / #26
Reverse-engineered systemic throughput
curl -sS \
"https://example-data.com/api/v1/brands/26" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/brands/26"
);
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/26"
);
const brand = (await res.json()) as Brand;import requests
res = requests.get(
"https://example-data.com/api/v1/brands/26"
)
brand = res.json() {
"id": 26,
"name": "Harvey - Watsica",
"slug": "harvey-watsica-26",
"description": "Reverse-engineered systemic throughput",
"logoUrl": "https://picsum.photos/seed/brand-26/200/200",
"website": "https://www.harvey-watsica.com",
"foundedYear": 1933,
"headquartersCountryAlpha2": "CN",
"createdAt": "2016-08-13T03:43:34.880Z"
}