example-data.com
Menu
Browse docs and collections

Overview

brands / #11

Component variants

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 11,
  "name": "Lynch, Welch and Casper",
  "slug": "lynch-welch-and-casper-11",
  "description": "Business-focused systematic hierarchy",
  "logoUrl": "https://picsum.photos/seed/brand-11/200/200",
  "website": "https://example.com/brands/lynch-welch-and-casper",
  "foundedYear": 1980,
  "headquartersCountryAlpha2": "IN",
  "createdAt": "2025-08-19T21:02:30.919Z"
}