example-data.com
Menu
Browse docs and collections

products

products

Page 6 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": 121,
      "sku": "JX5PO3VSOT",
      "name": "Recycled Plastic Tuna",
      "slug": "recycled-plastic-tuna-121",
      "description": "The Emerson Chicken is the latest in a series of blaring products from Haley, Hansen and Abshire",
      "category": "books",
      "brand": "Baumbach LLC",
      "price": 42.64,
      "salePrice": null,
      "currency": "USD",
      "inStock": true,
      "stockCount": 386,
      "rating": 3.2,
      "ratingCount": 3065,
      "imageUrl": "https://picsum.photos/seed/product-121/800/800",
      "createdAt": "2024-07-30T16:46:47.843Z",
      "updatedAt": "2025-06-11T19:56:08.468Z"
    },
    {
      "id": 122,
      "sku": "9NI6P92JUQ",
      "name": "Recycled Gold Car",
      "slug": "recycled-gold-car-122",
      "description": "Professional-grade Sausages perfect for sore training and recreational use",
      "category": "kitchen",
      "brand": "Olson, Treutel and Greenfelder",
      "price": 44.85,
      "salePrice": null,
      "currency": "USD",
      "inStock": true,
      "stockCount": 147,
      "rating": 3.9,
      "ratingCount": 608,
      "imageUrl": "https://picsum.photos/seed/product-122/800/800",
      "createdAt": "2025-09-21T08:43:59.893Z",
      "updatedAt": "2025-10-06T13:26:06.284Z"
    },
    {
      "id": 123,
      "sku": "XW46X7E086",
      "name": "Elegant Concrete Table",
      "slug": "elegant-concrete-table-123",
      "description": "New teal Table with ergonomic design for athletic comfort",
      "category": "clothing",
      "brand": "Kozey, Hintz and Haley",
      "price": 54.09,
      "salePrice": null,
      "currency": "USD",
      "inStock": true,
      "stockCount": 26,
      "rating": 3.4,
      "ratingCount": 4520,
      "imageUrl": "https://picsum.photos/seed/product-123/800/800",
      "createdAt": "2026-03-24T11:20:12.873Z",
      "updatedAt": "2026-05-17T19:57:15.314Z"
    }
  ],
  "meta": {
    "page": 6,
    "limit": 24,
    "total": 200,
    "totalPages": 9
  },
  "links": {
    "self": "/api/v1/products?page=6&limit=24",
    "first": "/api/v1/products?page=1&limit=24",
    "last": "/api/v1/products?page=9&limit=24",
    "next": "/api/v1/products?page=7&limit=24",
    "prev": "/api/v1/products?page=5&limit=24"
  }
}