example-data.com

brands / #7

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/brands/7"
)
brand = res.json()
{
  "id": 7,
  "name": "Klein - Schroeder",
  "slug": "klein-schroeder-7",
  "description": "Networked human-resource process improvement",
  "logoUrl": "https://picsum.photos/seed/brand-7/200/200",
  "website": "https://www.klein-schroeder.com",
  "foundedYear": 2014,
  "headquartersCountryAlpha2": "GB",
  "createdAt": "2017-04-06T01:42:33.574Z"
}
Draftbit