example-data.com

brands

brands

Browse 50 brands records. Free mock data API by Draftbit — fetch over REST or browse paginated HTML.

Senger and Sons

Senger and Sons

Founded
1927
Location
PT

Future-proofed high-level throughput

Showing first 6 of 24 on this page.

curl -sS \
  "https://example-data.com/api/v1/brands?limit=25"
const res = await fetch(
  "https://example-data.com/api/v1/brands?limit=25"
);
const { data, meta } = await res.json();
import type { Brand, ListEnvelope } from "https://example-data.com/types/brands.d.ts";

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

res = requests.get(
    "https://example-data.com/api/v1/brands",
    params={"limit": 25},
)
data = res.json()
{
  "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://www.beahan-and-sons.com",
      "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://www.jerde-o-hara-and-roberts.com",
      "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 →

Draftbit