Hills, Beahan and Ratke
- Founded
- 1966
- Location
- ES
Persevering impactful encoding
brands / #33
Persevering impactful encoding
curl -sS \
"https://example-data.com/api/v1/brands/33" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/brands/33"
);
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/33"
);
const brand = (await res.json()) as Brand;import requests
res = requests.get(
"https://example-data.com/api/v1/brands/33"
)
brand = res.json() {
"id": 33,
"name": "Hills, Beahan and Ratke",
"slug": "hills-beahan-and-ratke-33",
"description": "Persevering impactful encoding",
"logoUrl": "https://picsum.photos/seed/brand-33/200/200",
"website": "https://www.hills-beahan-and-ratke.com",
"foundedYear": 1966,
"headquartersCountryAlpha2": "ES",
"createdAt": "2016-10-19T08:57:51.553Z"
}