example-data.com
Menu
Browse docs and collections

products

products

Page 5 of 9.

Overview

Request

curl example

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

JavaScript example

const res = await fetch(
  "https://example-data.com/api/v1/products?limit=25"
);
const { data, meta } = await res.json();

TypeScript example

// Download once: mkdir -p types && curl -o types/products.d.ts https://example-data.com/types/products.d.ts
import type { Product, ListEnvelope } from "./types/products";

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

Python example

import requests

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

Response

{
  "data": [
    {
      "id": 97,
      "sku": "VWY7D2DDH8",
      "name": "Oriental Cotton Bacon",
      "slug": "oriental-cotton-bacon-97",
      "description": "The black Hat combines Jamaica aesthetics with Thorium-based durability",
      "category": "toys",
      "brand": "Predovic, Feil and Leffler",
      "price": 426.39,
      "salePrice": null,
      "currency": "USD",
      "inStock": false,
      "stockCount": 0,
      "rating": 4.3,
      "ratingCount": 3344,
      "imageUrl": "https://picsum.photos/seed/product-97/800/800",
      "createdAt": "2024-12-05T01:06:45.313Z",
      "updatedAt": "2025-03-02T01:21:43.072Z"
    },
    {
      "id": 98,
      "sku": "F82Q2DU0GK",
      "name": "Electronic Concrete Bacon",
      "slug": "electronic-concrete-bacon-98",
      "description": "Discover the fond new Bike with an exciting mix of Cotton ingredients",
      "category": "home",
      "brand": "Keebler Inc",
      "price": 345.69,
      "salePrice": null,
      "currency": "USD",
      "inStock": true,
      "stockCount": 453,
      "rating": 1.2,
      "ratingCount": 2558,
      "imageUrl": "https://picsum.photos/seed/product-98/800/800",
      "createdAt": "2024-08-16T06:17:47.845Z",
      "updatedAt": "2025-10-21T16:56:25.041Z"
    },
    {
      "id": 99,
      "sku": "I0S6CEZTIF",
      "name": "Frozen Plastic Bacon",
      "slug": "frozen-plastic-bacon-99",
      "description": "New orchid Shirt with ergonomic design for doting comfort",
      "category": "kitchen",
      "brand": "Morissette - Cronin",
      "price": 330.99,
      "salePrice": null,
      "currency": "USD",
      "inStock": true,
      "stockCount": 247,
      "rating": 3,
      "ratingCount": 1937,
      "imageUrl": "https://picsum.photos/seed/product-99/800/800",
      "createdAt": "2024-12-24T07:38:08.160Z",
      "updatedAt": "2025-10-13T23:30:36.672Z"
    }
  ],
  "meta": {
    "page": 5,
    "limit": 24,
    "total": 200,
    "totalPages": 9
  },
  "links": {
    "self": "/api/v1/products?page=5&limit=24",
    "first": "/api/v1/products?page=1&limit=24",
    "last": "/api/v1/products?page=9&limit=24",
    "next": "/api/v1/products?page=6&limit=24",
    "prev": "/api/v1/products?page=4&limit=24"
  }
}