Kris, Ratke and Block
- Founded
- 2007
- Location
- CH
Quality-focused responsive implementation
brands / #18
Quality-focused responsive implementation
curl -sS \
"https://example-data.com/api/v1/brands/18" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/brands/18"
);
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/18"
);
const brand = (await res.json()) as Brand;import requests
res = requests.get(
"https://example-data.com/api/v1/brands/18"
)
brand = res.json() {
"id": 18,
"name": "Kris, Ratke and Block",
"slug": "kris-ratke-and-block-18",
"description": "Quality-focused responsive implementation",
"logoUrl": "https://picsum.photos/seed/brand-18/200/200",
"website": "https://www.kris-ratke-and-block.com",
"foundedYear": 2007,
"headquartersCountryAlpha2": "CH",
"createdAt": "2022-04-17T19:09:36.788Z"
}