example-data.com

brands / #42

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/brands/42"
)
brand = res.json()
{
  "id": 42,
  "name": "Ernser LLC",
  "slug": "ernser-llc-42",
  "description": "Cross-platform interactive database",
  "logoUrl": "https://picsum.photos/seed/brand-42/200/200",
  "website": "https://www.ernser-llc.com",
  "foundedYear": 2019,
  "headquartersCountryAlpha2": "IT",
  "createdAt": "2022-12-21T03:35:27.256Z"
}
Draftbit