Goodwin Inc
- Founded
- 2000
- Location
- FJ
Fully-configurable uniform archive
brands / #46
Fully-configurable uniform archive
curl -sS \
"https://example-data.com/api/v1/brands/46" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/brands/46"
);
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/46"
);
const brand = (await res.json()) as Brand;import requests
res = requests.get(
"https://example-data.com/api/v1/brands/46"
)
brand = res.json() {
"id": 46,
"name": "Goodwin Inc",
"slug": "goodwin-inc-46",
"description": "Fully-configurable uniform archive",
"logoUrl": "https://picsum.photos/seed/brand-46/200/200",
"website": null,
"foundedYear": 2000,
"headquartersCountryAlpha2": "FJ",
"createdAt": "2018-10-27T12:23:45.369Z"
}