Legros Inc
- Founded
- 1931
- Location
- KR
Implemented dedicated database
brands / #21
Implemented dedicated database
curl -sS \
"https://example-data.com/api/v1/brands/21" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/brands/21"
);
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/21"
);
const brand = (await res.json()) as Brand;import requests
res = requests.get(
"https://example-data.com/api/v1/brands/21"
)
brand = res.json() {
"id": 21,
"name": "Legros Inc",
"slug": "legros-inc-21",
"description": "Implemented dedicated database",
"logoUrl": "https://picsum.photos/seed/brand-21/200/200",
"website": null,
"foundedYear": 1931,
"headquartersCountryAlpha2": "KR",
"createdAt": "2018-09-09T20:30:53.316Z"
}