example-data.com

brands

brands

Page 2 of 3.

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": 25,
      "name": "Wehner, O'Hara and Ferry",
      "slug": "wehner-o-hara-and-ferry-25",
      "description": "Sharable responsive knowledge user",
      "logoUrl": "https://picsum.photos/seed/brand-25/200/200",
      "website": "https://www.wehner-o-hara-and-ferry.com",
      "foundedYear": 2011,
      "headquartersCountryAlpha2": "AU",
      "createdAt": "2018-01-06T20:58:27.745Z"
    },
    {
      "id": 26,
      "name": "Harvey - Watsica",
      "slug": "harvey-watsica-26",
      "description": "Reverse-engineered systemic throughput",
      "logoUrl": "https://picsum.photos/seed/brand-26/200/200",
      "website": "https://www.harvey-watsica.com",
      "foundedYear": 1933,
      "headquartersCountryAlpha2": "CN",
      "createdAt": "2016-08-13T03:43:34.880Z"
    },
    {
      "id": 27,
      "name": "Mills and Sons",
      "slug": "mills-and-sons-27",
      "description": "Multi-tiered bottom-line microservice",
      "logoUrl": "https://picsum.photos/seed/brand-27/200/200",
      "website": "https://www.mills-and-sons.com",
      "foundedYear": 1979,
      "headquartersCountryAlpha2": "EG",
      "createdAt": "2020-12-01T01:21:05.109Z"
    }
  ],
  "meta": {
    "page": 2,
    "limit": 24,
    "total": 50,
    "totalPages": 3
  },
  "links": {
    "self": "/api/v1/brands?page=2",
    "next": "/api/v1/brands?page=3",
    "prev": "/api/v1/brands?page=1"
  }
}
Draftbit