Friesen and Sons
- Founded
- 1989
- Location
- AU
Stand-alone tangible moratorium
Overview
brands / #36
Stand-alone tangible moratorium
Request
curl example
curl -sS \ "https://example-data.com/api/v1/brands/36" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/brands/36" ); 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/36"
);
const brand = (await res.json()) as Brand; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/brands/36"
)
brand = res.json() Response
{
"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"
}