example-data.com
Menu
Browse docs and collections

products

products

Page 2 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": 25,
      "sku": "E7V3TKJGIV",
      "name": "Soft Gold Chips",
      "slug": "soft-gold-chips-25",
      "description": "The Future-proofed global encoding Mouse offers reliable performance and bitter design",
      "category": "books",
      "brand": "Barrows and Sons",
      "price": 226.49,
      "salePrice": null,
      "currency": "USD",
      "inStock": true,
      "stockCount": 233,
      "rating": 1.2,
      "ratingCount": 179,
      "imageUrl": "https://picsum.photos/seed/product-25/800/800",
      "createdAt": "2025-11-08T01:07:32.032Z",
      "updatedAt": "2026-02-25T00:27:30.225Z"
    },
    {
      "id": 26,
      "sku": "FTME6MWJ2Q",
      "name": "Licensed Marble Computer",
      "slug": "licensed-marble-computer-26",
      "description": "Professional-grade Chair perfect for fearless training and recreational use",
      "category": "kitchen",
      "brand": "Durgan - Yost",
      "price": 44.99,
      "salePrice": 38.75,
      "currency": "USD",
      "inStock": true,
      "stockCount": 134,
      "rating": 4.3,
      "ratingCount": 3001,
      "imageUrl": "https://picsum.photos/seed/product-26/800/800",
      "createdAt": "2025-04-09T11:37:32.319Z",
      "updatedAt": "2025-09-07T11:01:52.838Z"
    },
    {
      "id": 27,
      "sku": "DBR5TIF5HY",
      "name": "Modern Silk Sausages",
      "slug": "modern-silk-sausages-27",
      "description": "Discover the remorseful new Sausages with an exciting mix of Cotton ingredients",
      "category": "books",
      "brand": "Connelly, Daugherty and Stehr",
      "price": 295.99,
      "salePrice": null,
      "currency": "USD",
      "inStock": true,
      "stockCount": 491,
      "rating": 3.9,
      "ratingCount": 773,
      "imageUrl": "https://picsum.photos/seed/product-27/800/800",
      "createdAt": "2025-02-15T13:38:10.073Z",
      "updatedAt": "2026-03-11T19:14:41.698Z"
    }
  ],
  "meta": {
    "page": 2,
    "limit": 24,
    "total": 200,
    "totalPages": 9
  },
  "links": {
    "self": "/api/v1/products?page=2&limit=24",
    "first": "/api/v1/products?page=1&limit=24",
    "last": "/api/v1/products?page=9&limit=24",
    "next": "/api/v1/products?page=3&limit=24",
    "prev": "/api/v1/products?page=1&limit=24"
  }
}