Hyatt, Thompson and Hessel
- Founded
- 1979
- Location
- MX
Public-key asymmetric attitude
brands / #50
Public-key asymmetric attitude
curl -sS \
"https://example-data.com/api/v1/brands/50" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/brands/50"
);
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/50"
);
const brand = (await res.json()) as Brand;import requests
res = requests.get(
"https://example-data.com/api/v1/brands/50"
)
brand = res.json() {
"id": 50,
"name": "Hyatt, Thompson and Hessel",
"slug": "hyatt-thompson-and-hessel-50",
"description": "Public-key asymmetric attitude",
"logoUrl": "https://picsum.photos/seed/brand-50/200/200",
"website": null,
"foundedYear": 1979,
"headquartersCountryAlpha2": "MX",
"createdAt": "2022-06-17T07:22:57.205Z"
}