example-data.com
Menu
Browse docs and collections

products

products

Page 9 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": 193,
      "sku": "2Q9WLKC55I",
      "name": "Handmade Rubber Tuna",
      "slug": "handmade-rubber-tuna-193",
      "description": "Savor the creamy essence in our Hat, designed for silent culinary adventures",
      "category": "beauty",
      "brand": "Beer, Smith and Morissette",
      "price": 219.55,
      "salePrice": 113.33,
      "currency": "USD",
      "inStock": false,
      "stockCount": 0,
      "rating": 2.9,
      "ratingCount": 803,
      "imageUrl": "https://picsum.photos/seed/product-193/800/800",
      "createdAt": "2025-09-05T19:36:54.901Z",
      "updatedAt": "2026-04-05T16:52:22.178Z"
    },
    {
      "id": 194,
      "sku": "CXVWLDS0XX",
      "name": "Refined Cotton Shoes",
      "slug": "refined-cotton-shoes-194",
      "description": "New Towels model with 88 GB RAM, 784 GB storage, and numb features",
      "category": "toys",
      "brand": "Pfannerstill - Goldner",
      "price": 488.15,
      "salePrice": 295.67,
      "currency": "USD",
      "inStock": true,
      "stockCount": 145,
      "rating": 1.5,
      "ratingCount": 2978,
      "imageUrl": "https://picsum.photos/seed/product-194/800/800",
      "createdAt": "2025-12-02T22:51:52.911Z",
      "updatedAt": "2026-04-09T20:13:45.558Z"
    },
    {
      "id": 195,
      "sku": "TUHNZ89HS9",
      "name": "Small Aluminum Mouse",
      "slug": "small-aluminum-mouse-195",
      "description": "Featuring Berkelium-enhanced technology, our Cheese offers unparalleled rotating performance",
      "category": "clothing",
      "brand": "Cole - Gleason",
      "price": 168.99,
      "salePrice": null,
      "currency": "USD",
      "inStock": false,
      "stockCount": 0,
      "rating": 4.2,
      "ratingCount": 2689,
      "imageUrl": "https://picsum.photos/seed/product-195/800/800",
      "createdAt": "2024-08-03T10:32:33.883Z",
      "updatedAt": "2025-04-13T14:46:38.206Z"
    }
  ],
  "meta": {
    "page": 9,
    "limit": 24,
    "total": 200,
    "totalPages": 9
  },
  "links": {
    "self": "/api/v1/products?page=9&limit=24",
    "first": "/api/v1/products?page=1&limit=24",
    "last": "/api/v1/products?page=9&limit=24",
    "next": null,
    "prev": "/api/v1/products?page=8&limit=24"
  }
}