example-data.com
Menu
Browse docs and collections

products

products

Page 4 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": 73,
      "sku": "W6KXR7864B",
      "name": "Soft Bamboo Ball",
      "slug": "soft-bamboo-ball-73",
      "description": "Ergonomic Chips made with Bamboo for all-day athletic support",
      "category": "kitchen",
      "brand": "Dickinson, Cole and Howell",
      "price": 316.29,
      "salePrice": 163.18,
      "currency": "USD",
      "inStock": true,
      "stockCount": 85,
      "rating": 3.5,
      "ratingCount": 4392,
      "imageUrl": "https://picsum.photos/seed/product-73/800/800",
      "createdAt": "2026-02-02T18:41:12.353Z",
      "updatedAt": "2026-03-12T06:44:47.841Z"
    },
    {
      "id": 74,
      "sku": "B3O0P7MIZ5",
      "name": "Licensed Granite Chair",
      "slug": "licensed-granite-chair-74",
      "description": "The maroon Table combines Aruba aesthetics with Astatine-based durability",
      "category": "kitchen",
      "brand": "Wilderman - Huel",
      "price": 464.85,
      "salePrice": null,
      "currency": "USD",
      "inStock": true,
      "stockCount": 254,
      "rating": 3.8,
      "ratingCount": 909,
      "imageUrl": "https://picsum.photos/seed/product-74/800/800",
      "createdAt": "2025-04-22T03:19:06.235Z",
      "updatedAt": "2025-07-21T20:15:55.511Z"
    },
    {
      "id": 75,
      "sku": "DR3QCN28Z6",
      "name": "Bespoke Rubber Computer",
      "slug": "bespoke-rubber-computer-75",
      "description": "Introducing the Qatar-inspired Gloves, blending unknown style with local craftsmanship",
      "category": "clothing",
      "brand": "Breitenberg LLC",
      "price": 288.89,
      "salePrice": null,
      "currency": "USD",
      "inStock": true,
      "stockCount": 129,
      "rating": 3.5,
      "ratingCount": 3178,
      "imageUrl": "https://picsum.photos/seed/product-75/800/800",
      "createdAt": "2025-04-25T17:23:07.965Z",
      "updatedAt": "2025-05-21T11:24:42.204Z"
    }
  ],
  "meta": {
    "page": 4,
    "limit": 24,
    "total": 200,
    "totalPages": 9
  },
  "links": {
    "self": "/api/v1/products?page=4&limit=24",
    "first": "/api/v1/products?page=1&limit=24",
    "last": "/api/v1/products?page=9&limit=24",
    "next": "/api/v1/products?page=5&limit=24",
    "prev": "/api/v1/products?page=3&limit=24"
  }
}