example-data.com
Menu
Browse docs and collections

brands

brands

Browse 50 brands records. Explore sample records and fetch JSON over a free REST API for prototypes, tests, and learning.

Overview

Cards

Compact

Detailed

Senger and Sons

Senger and Sons

Founded
1927
Location
PT

Future-proofed high-level throughput

Showing first 6 of 24 on this page.

Request

curl example

curl -sS \
  "https://example-data.com/api/v1/brands?limit=25"

JavaScript example

const res = await fetch(
  "https://example-data.com/api/v1/brands?limit=25"
);
const { data, meta } = 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, ListEnvelope } from "./types/brands";

const res = await fetch(
  "https://example-data.com/api/v1/brands?limit=25"
);
const { data, meta } = (await res.json()) as ListEnvelope<Brand>;

Python example

import requests

res = requests.get(
    "https://example-data.com/api/v1/brands",
    params={"limit": 25},
)
data = res.json()

Response

{
  "data": [
    {
      "id": 1,
      "name": "Beahan and Sons",
      "slug": "beahan-and-sons-1",
      "description": "Diverse systemic application",
      "logoUrl": "https://picsum.photos/seed/brand-1/200/200",
      "website": "https://example.com/brands/beahan-and-sons",
      "foundedYear": 2023,
      "headquartersCountryAlpha2": "PE",
      "createdAt": "2023-02-04T09:57:54.220Z"
    },
    {
      "id": 2,
      "name": "Jerde, O'Hara and Roberts",
      "slug": "jerde-o-hara-and-roberts-2",
      "description": "Polarised immersive function",
      "logoUrl": "https://picsum.photos/seed/brand-2/200/200",
      "website": "https://example.com/brands/jerde-o-hara-and-roberts",
      "foundedYear": 2003,
      "headquartersCountryAlpha2": "NL",
      "createdAt": "2017-07-02T17:15:50.414Z"
    },
    {
      "id": 3,
      "name": "Senger and Sons",
      "slug": "senger-and-sons-3",
      "description": "Future-proofed high-level throughput",
      "logoUrl": "https://picsum.photos/seed/brand-3/200/200",
      "website": null,
      "foundedYear": 1927,
      "headquartersCountryAlpha2": "PT",
      "createdAt": "2021-08-03T15:27:27.485Z"
    }
  ],
  "meta": {
    "page": 1,
    "limit": 25,
    "total": 50,
    "totalPages": 2
  },
  "links": {
    "self": "/api/v1/brands?page=1",
    "first": "/api/v1/brands?page=1",
    "last": "/api/v1/brands?page=2",
    "next": "/api/v1/brands?page=2",
    "prev": null
  }
}

View full response →