Haley - Wiegand
- Founded
- 1969
- Location
- TR
Self-enabling neutral matrices
Overview
brands / #43
Self-enabling neutral matrices
Request
curl example
curl -sS \ "https://example-data.com/api/v1/brands/43" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/brands/43" ); 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/43"
);
const brand = (await res.json()) as Brand; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/brands/43"
)
brand = res.json() Response
{
"id": 43,
"name": "Haley - Wiegand",
"slug": "haley-wiegand-43",
"description": "Self-enabling neutral matrices",
"logoUrl": "https://picsum.photos/seed/brand-43/200/200",
"website": null,
"foundedYear": 1969,
"headquartersCountryAlpha2": "TR",
"createdAt": "2017-04-05T19:55:29.503Z"
}