Goodwin Inc
- Founded
- 2000
- Location
- FJ
Fully-configurable uniform archive
Overview
brands / #46
Fully-configurable uniform archive
Request
curl example
curl -sS \ "https://example-data.com/api/v1/brands/46" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/brands/46" ); 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/46"
);
const brand = (await res.json()) as Brand; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/brands/46"
)
brand = res.json() Response
{
"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"
}