example-data.com
Menu
Browse docs and collections

products

products

Page 3 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": 49,
      "sku": "V0RT0AS3K1",
      "name": "Frozen Concrete Salad",
      "slug": "frozen-concrete-salad-49",
      "description": "Savor the bitter essence in our Salad, designed for right culinary adventures",
      "category": "kitchen",
      "brand": "Jacobson Inc",
      "price": 116.25,
      "salePrice": null,
      "currency": "USD",
      "inStock": true,
      "stockCount": 145,
      "rating": 1.2,
      "ratingCount": 3382,
      "imageUrl": "https://picsum.photos/seed/product-49/800/800",
      "createdAt": "2025-02-24T00:18:05.625Z",
      "updatedAt": "2025-03-28T16:17:05.440Z"
    },
    {
      "id": 50,
      "sku": "XEZBHKG0WX",
      "name": "Licensed Bronze Soap",
      "slug": "licensed-bronze-soap-50",
      "description": "Our elephant-friendly Shoes ensures naughty comfort for your pets",
      "category": "sports",
      "brand": "Stoltenberg Group",
      "price": 283.59,
      "salePrice": null,
      "currency": "USD",
      "inStock": true,
      "stockCount": 336,
      "rating": 4.9,
      "ratingCount": 2822,
      "imageUrl": "https://picsum.photos/seed/product-50/800/800",
      "createdAt": "2025-04-04T04:23:33.683Z",
      "updatedAt": "2026-05-15T09:05:02.116Z"
    },
    {
      "id": 51,
      "sku": "28UEMYWOF7",
      "name": "Frozen Gold Chips",
      "slug": "frozen-gold-chips-51",
      "description": "Introducing the Grenada-inspired Chicken, blending ripe style with local craftsmanship",
      "category": "sports",
      "brand": "Heller and Sons",
      "price": 113.85,
      "salePrice": null,
      "currency": "USD",
      "inStock": true,
      "stockCount": 150,
      "rating": 3.8,
      "ratingCount": 3836,
      "imageUrl": "https://picsum.photos/seed/product-51/800/800",
      "createdAt": "2025-10-12T16:53:54.924Z",
      "updatedAt": "2026-01-17T17:36:20.381Z"
    }
  ],
  "meta": {
    "page": 3,
    "limit": 24,
    "total": 200,
    "totalPages": 9
  },
  "links": {
    "self": "/api/v1/products?page=3&limit=24",
    "first": "/api/v1/products?page=1&limit=24",
    "last": "/api/v1/products?page=9&limit=24",
    "next": "/api/v1/products?page=4&limit=24",
    "prev": "/api/v1/products?page=2&limit=24"
  }
}