example-data.com

brands / #27

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/brands/27"
)
brand = res.json()
{
  "id": 27,
  "name": "Mills and Sons",
  "slug": "mills-and-sons-27",
  "description": "Multi-tiered bottom-line microservice",
  "logoUrl": "https://picsum.photos/seed/brand-27/200/200",
  "website": "https://www.mills-and-sons.com",
  "foundedYear": 1979,
  "headquartersCountryAlpha2": "EG",
  "createdAt": "2020-12-01T01:21:05.109Z"
}
Draftbit