example-data.com

brands / #1

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/brands/1"
)
brand = res.json()
{
  "id": 1,
  "name": "Beahan and Sons",
  "slug": "beahan-and-sons-1",
  "description": "Diverse systemic application",
  "logoUrl": "https://picsum.photos/seed/brand-1/200/200",
  "website": "https://www.beahan-and-sons.com",
  "foundedYear": 2023,
  "headquartersCountryAlpha2": "PE",
  "createdAt": "2023-02-04T09:57:54.220Z"
}
Draftbit