Olson and Sons
- Founded
- 1953
- Location
- EG
Balanced mission-critical neural-net
Overview
brands / #29
Balanced mission-critical neural-net
Request
curl example
curl -sS \ "https://example-data.com/api/v1/brands/29" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/brands/29" ); 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/29"
);
const brand = (await res.json()) as Brand; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/brands/29"
)
brand = res.json() Response
{
"id": 29,
"name": "Olson and Sons",
"slug": "olson-and-sons-29",
"description": "Balanced mission-critical neural-net",
"logoUrl": "https://picsum.photos/seed/brand-29/200/200",
"website": "https://example.com/brands/olson-and-sons",
"foundedYear": 1953,
"headquartersCountryAlpha2": "EG",
"createdAt": "2023-08-04T15:15:27.392Z"
}