example-data.com
Menu
Browse docs and collections

Overview

brands / #8

Quigley, Moen and Renner

Quigley, Moen and Renner

Founded
1977
Location
MY

Devolved uniform initiative

Component variants

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 8,
  "name": "Quigley, Moen and Renner",
  "slug": "quigley-moen-and-renner-8",
  "description": "Devolved uniform initiative",
  "logoUrl": "https://picsum.photos/seed/brand-8/200/200",
  "website": null,
  "foundedYear": 1977,
  "headquartersCountryAlpha2": "MY",
  "createdAt": "2023-06-28T11:13:40.005Z"
}