Brekke Inc
- Founded
- 2017
- Location
- NG
Streamlined value-added projection
Overview
brands / #39
Streamlined value-added projection
Request
curl example
curl -sS \ "https://example-data.com/api/v1/brands/39" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/brands/39" ); 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/39"
);
const brand = (await res.json()) as Brand; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/brands/39"
)
brand = res.json() Response
{
"id": 39,
"name": "Brekke Inc",
"slug": "brekke-inc-39",
"description": "Streamlined value-added projection",
"logoUrl": "https://picsum.photos/seed/brand-39/200/200",
"website": "https://example.com/brands/brekke-inc",
"foundedYear": 2017,
"headquartersCountryAlpha2": "NG",
"createdAt": "2016-10-21T21:22:56.155Z"
}