example-data.com
Menu
Browse docs and collections

Overview

brands / #33

Component variants

Request

curl example

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

JavaScript example

const res = await fetch(
  "https://example-data.com/api/v1/brands/33"
);
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/33"
);
const brand = (await res.json()) as Brand;

Python example

import requests

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

Response

{
  "id": 33,
  "name": "Hills, Beahan and Ratke",
  "slug": "hills-beahan-and-ratke-33",
  "description": "Persevering impactful encoding",
  "logoUrl": "https://picsum.photos/seed/brand-33/200/200",
  "website": "https://example.com/brands/hills-beahan-and-ratke",
  "foundedYear": 1966,
  "headquartersCountryAlpha2": "ES",
  "createdAt": "2016-10-19T08:57:51.553Z"
}