Fay Group
- Founded
- 1951
- Location
- FJ
Virtual motivating structure
Overview
brands / #6
Virtual motivating structure
Request
curl example
curl -sS \ "https://example-data.com/api/v1/brands/6" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/brands/6" ); 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/6"
);
const brand = (await res.json()) as Brand; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/brands/6"
)
brand = res.json() Response
{
"id": 6,
"name": "Fay Group",
"slug": "fay-group-6",
"description": "Virtual motivating structure",
"logoUrl": "https://picsum.photos/seed/brand-6/200/200",
"website": "https://example.com/brands/fay-group",
"foundedYear": 1951,
"headquartersCountryAlpha2": "FJ",
"createdAt": "2019-10-03T12:34:22.710Z"
}