example-data.com
Menu
Browse docs and collections

Overview

brands / #31

Component variants

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 31,
  "name": "Langosh - Collier",
  "slug": "langosh-collier-31",
  "description": "Balanced directional paradigm",
  "logoUrl": "https://picsum.photos/seed/brand-31/200/200",
  "website": "https://example.com/brands/langosh-collier",
  "foundedYear": 2018,
  "headquartersCountryAlpha2": "IE",
  "createdAt": "2024-11-04T18:13:52.489Z"
}