example-data.com
Menu
Browse docs and collections

Overview

brands / #36

Friesen and Sons

Friesen and Sons

Founded
1989
Location
AU

Stand-alone tangible moratorium

Component variants

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 36,
  "name": "Friesen and Sons",
  "slug": "friesen-and-sons-36",
  "description": "Stand-alone tangible moratorium",
  "logoUrl": "https://picsum.photos/seed/brand-36/200/200",
  "website": null,
  "foundedYear": 1989,
  "headquartersCountryAlpha2": "AU",
  "createdAt": "2023-08-12T04:54:52.174Z"
}