Friesen and Sons
- Founded
- 1989
- Location
- AU
Stand-alone tangible moratorium
brands / #36
Stand-alone tangible moratorium
curl -sS \
"https://example-data.com/api/v1/brands/36" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/brands/36"
);
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/36"
);
const brand = (await res.json()) as Brand;import requests
res = requests.get(
"https://example-data.com/api/v1/brands/36"
)
brand = res.json() {
"id": 36,
"name": "Friesen and Sons",
"slug": "friesen-and-sons-36",
"description": "Stand-alone tangible moratorium",
"logoUrl": "https://picsum.photos/seed/brand-36/200/200",
"website": null,
"foundedYear": 1989,
"headquartersCountryAlpha2": "AU",
"createdAt": "2023-08-12T04:54:52.174Z"
}