example-data.com
Menu
Browse docs and collections

Overview

brands / #18

Component variants

Request

curl example

curl -sS \
  "https://example-data.com/api/v1/brands/18" \
  -H "Accept: application/json"

JavaScript example

const res = await fetch(
  "https://example-data.com/api/v1/brands/18"
);
const brand = await res.json();

TypeScript example

// Download once: mkdir -p types && curl -o types/brands.d.ts https://example-data.com/types/brands.d.ts
import type { Brand } from "./types/brands";

const res = await fetch(
  "https://example-data.com/api/v1/brands/18"
);
const brand = (await res.json()) as Brand;

Python example

import requests

res = requests.get(
    "https://example-data.com/api/v1/brands/18"
)
brand = res.json()

Response

{
  "id": 18,
  "name": "Kris, Ratke and Block",
  "slug": "kris-ratke-and-block-18",
  "description": "Quality-focused responsive implementation",
  "logoUrl": "https://picsum.photos/seed/brand-18/200/200",
  "website": "https://example.com/brands/kris-ratke-and-block",
  "foundedYear": 2007,
  "headquartersCountryAlpha2": "CH",
  "createdAt": "2022-04-17T19:09:36.788Z"
}