Harvey - Watsica
- Founded
- 1933
- Location
- CN
Reverse-engineered systemic throughput
Overview
brands / #26
Reverse-engineered systemic throughput
Request
curl example
curl -sS \ "https://example-data.com/api/v1/brands/26" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/brands/26" ); 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/26"
);
const brand = (await res.json()) as Brand; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/brands/26"
)
brand = res.json() Response
{
"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://example.com/brands/harvey-watsica",
"foundedYear": 1933,
"headquartersCountryAlpha2": "CN",
"createdAt": "2016-08-13T03:43:34.880Z"
}