Shanahan LLC
- Founded
- 1932
- Website
- https://www.shanahan-llc.com
- Location
- PL
Stand-alone leading edge task-force
brands / #35
Stand-alone leading edge task-force
curl -sS \
"https://example-data.com/api/v1/brands/35" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/brands/35"
);
const brand = await res.json();import type { Brand } from "https://example-data.com/types/brands.d.ts";
const res = await fetch(
"https://example-data.com/api/v1/brands/35"
);
const brand = (await res.json()) as Brand;import requests
res = requests.get(
"https://example-data.com/api/v1/brands/35"
)
brand = res.json() {
"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://www.shanahan-llc.com",
"foundedYear": 1932,
"headquartersCountryAlpha2": "PL",
"createdAt": "2022-02-19T22:36:15.600Z"
}