example-data.com
Menu
Browse docs and collections

products

products

Page 8 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": 169,
      "sku": "G09JIXK4R0",
      "name": "Electronic Ceramic Bike",
      "slug": "electronic-ceramic-bike-169",
      "description": "Featuring Copper-enhanced technology, our Keyboard offers unparalleled worthy performance",
      "category": "home",
      "brand": "Carter - Sawayn",
      "price": 372.29,
      "salePrice": null,
      "currency": "USD",
      "inStock": true,
      "stockCount": 84,
      "rating": 4.4,
      "ratingCount": 3206,
      "imageUrl": "https://picsum.photos/seed/product-169/800/800",
      "createdAt": "2024-10-28T06:19:06.124Z",
      "updatedAt": "2026-03-09T05:20:01.943Z"
    },
    {
      "id": 170,
      "sku": "Y2TOIIY7ZM",
      "name": "Refined Plastic Pants",
      "slug": "refined-plastic-pants-170",
      "description": "Modern Shoes designed with Gold for ambitious performance",
      "category": "kitchen",
      "brand": "Brakus, O'Reilly and Kuhic",
      "price": 149.69,
      "salePrice": 93.23,
      "currency": "USD",
      "inStock": true,
      "stockCount": 335,
      "rating": 1.8,
      "ratingCount": 288,
      "imageUrl": "https://picsum.photos/seed/product-170/800/800",
      "createdAt": "2024-12-14T18:42:57.473Z",
      "updatedAt": "2025-12-12T18:02:25.185Z"
    },
    {
      "id": 171,
      "sku": "47EQDRRPMS",
      "name": "Gorgeous Ceramic Tuna",
      "slug": "gorgeous-ceramic-tuna-171",
      "description": "Kutch Inc's most advanced Pizza technology increases agreeable capabilities",
      "category": "sports",
      "brand": "West, Feeney and Mohr",
      "price": 396.99,
      "salePrice": null,
      "currency": "USD",
      "inStock": true,
      "stockCount": 492,
      "rating": 1.2,
      "ratingCount": 1231,
      "imageUrl": "https://picsum.photos/seed/product-171/800/800",
      "createdAt": "2025-09-16T14:35:45.653Z",
      "updatedAt": "2026-04-17T15:26:51.240Z"
    }
  ],
  "meta": {
    "page": 8,
    "limit": 24,
    "total": 200,
    "totalPages": 9
  },
  "links": {
    "self": "/api/v1/products?page=8&limit=24",
    "first": "/api/v1/products?page=1&limit=24",
    "last": "/api/v1/products?page=9&limit=24",
    "next": "/api/v1/products?page=9&limit=24",
    "prev": "/api/v1/products?page=7&limit=24"
  }
}