Ortiz - Lesch
- Founded
- 1981
- Location
- ET
Devolved contextually-based implementation
Overview
brands / #19
Devolved contextually-based implementation
Request
curl example
curl -sS \ "https://example-data.com/api/v1/brands/19" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/brands/19" ); 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/19"
);
const brand = (await res.json()) as Brand; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/brands/19"
)
brand = res.json() Response
{
"id": 19,
"name": "Ortiz - Lesch",
"slug": "ortiz-lesch-19",
"description": "Devolved contextually-based implementation",
"logoUrl": "https://picsum.photos/seed/brand-19/200/200",
"website": null,
"foundedYear": 1981,
"headquartersCountryAlpha2": "ET",
"createdAt": "2021-09-13T10:17:14.209Z"
}