Fay - Armstrong
- Founded
- 1940
- Location
- PK
Triple-buffered responsive policy
brands / #24
Triple-buffered responsive policy
curl -sS \
"https://example-data.com/api/v1/brands/24" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/brands/24"
);
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/24"
);
const brand = (await res.json()) as Brand;import requests
res = requests.get(
"https://example-data.com/api/v1/brands/24"
)
brand = res.json() {
"id": 24,
"name": "Fay - Armstrong",
"slug": "fay-armstrong-24",
"description": "Triple-buffered responsive policy",
"logoUrl": "https://picsum.photos/seed/brand-24/200/200",
"website": null,
"foundedYear": 1940,
"headquartersCountryAlpha2": "PK",
"createdAt": "2020-02-02T08:31:44.998Z"
}