example-data.com

brands / #19

Ortiz - Lesch

Ortiz - Lesch

Founded
1981
Location
ET

Devolved contextually-based implementation

Component variants

curl -sS \
  "https://example-data.com/api/v1/brands/19" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/brands/19"
);
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/19"
);
const brand = (await res.json()) as Brand;
import requests

res = requests.get(
    "https://example-data.com/api/v1/brands/19"
)
brand = res.json()
{
  "id": 19,
  "name": "Ortiz - Lesch",
  "slug": "ortiz-lesch-19",
  "description": "Devolved contextually-based implementation",
  "logoUrl": "https://picsum.photos/seed/brand-19/200/200",
  "website": null,
  "foundedYear": 1981,
  "headquartersCountryAlpha2": "ET",
  "createdAt": "2021-09-13T10:17:14.209Z"
}
Draftbit