Haley - Wiegand
- Founded
- 1969
- Location
- TR
Self-enabling neutral matrices
brands / #43
Self-enabling neutral matrices
curl -sS \
"https://example-data.com/api/v1/brands/43" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/brands/43"
);
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/43"
);
const brand = (await res.json()) as Brand;import requests
res = requests.get(
"https://example-data.com/api/v1/brands/43"
)
brand = res.json() {
"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"
}