Graham LLC
- Founded
- 2023
- Location
- PH
Intuitive client-server support
Overview
brands / #37
Intuitive client-server support
Request
curl example
curl -sS \ "https://example-data.com/api/v1/brands/37" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/brands/37" ); 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/37"
);
const brand = (await res.json()) as Brand; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/brands/37"
)
brand = res.json() Response
{
"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://example.com/brands/graham-llc",
"foundedYear": 2023,
"headquartersCountryAlpha2": "PH",
"createdAt": "2019-07-11T19:18:06.658Z"
}