Shanahan LLC
- Founded
- 1932
- Location
- PL
Stand-alone leading edge task-force
Overview
brands / #35
Stand-alone leading edge task-force
Request
curl example
curl -sS \ "https://example-data.com/api/v1/brands/35" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/brands/35" ); 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/35"
);
const brand = (await res.json()) as Brand; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/brands/35"
)
brand = res.json() Response
{
"id": 35,
"name": "Shanahan LLC",
"slug": "shanahan-llc-35",
"description": "Stand-alone leading edge task-force",
"logoUrl": "https://picsum.photos/seed/brand-35/200/200",
"website": "https://example.com/brands/shanahan-llc",
"foundedYear": 1932,
"headquartersCountryAlpha2": "PL",
"createdAt": "2022-02-19T22:36:15.600Z"
}