Graham LLC
- Founded
- 2023
- Website
- https://www.graham-llc.com
- Location
- PH
Intuitive client-server support
brands / #37
Intuitive client-server support
curl -sS \
"https://example-data.com/api/v1/brands/37" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/brands/37"
);
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/37"
);
const brand = (await res.json()) as Brand;import requests
res = requests.get(
"https://example-data.com/api/v1/brands/37"
)
brand = res.json() {
"id": 37,
"name": "Graham LLC",
"slug": "graham-llc-37",
"description": "Intuitive client-server support",
"logoUrl": "https://picsum.photos/seed/brand-37/200/200",
"website": "https://www.graham-llc.com",
"foundedYear": 2023,
"headquartersCountryAlpha2": "PH",
"createdAt": "2019-07-11T19:18:06.658Z"
}