example-data.com
Menu
Browse docs and collections

products

products

Browse 200 products records. Explore sample records and fetch JSON over a free REST API for prototypes, tests, and learning.

Overview

Cards

Compact

Detailed

Tasty Silk Tuna

Tasty Silk Tuna

Braun - Tromp

USD219.09

Out of stock

★ 2.3 (657)

Our bear-friendly Chips ensures unlucky comfort for your pets

Category
clothing
Unbranded Silk Cheese

Unbranded Silk Cheese

Robel, Gulgowski and Kautzer

USD176.79

Out of stock

★ 3.7 (906)

The sleek and hollow Mouse comes with red LED lighting for smart functionality

Category
beauty
Soft Bronze Hat

Soft Bronze Hat

Nader, Friesen and Cole

USD23.15

In stock

★ 3.1 (2984)

Stylish Car designed to make you stand out with next looks

Category
toys
Refined Plastic Bacon

Refined Plastic Bacon

Sporer, Moore and Huel

USD160.19

In stock

★ 4.3 (1302)

The sleek and purple Chair comes with plum LED lighting for smart functionality

Category
toys
Bespoke Concrete Computer

Bespoke Concrete Computer

Rodriguez, Kshlerin and Hyatt

USD309.39

In stock

★ 2.7 (2976)

Professional-grade Ball perfect for mushy training and recreational use

Category
kitchen
Incredible Aluminum Hat

Incredible Aluminum Hat

Goyette - Anderson

USD63.65 USD33.20

In stock

★ 1.8 (1102)

Professional-grade Keyboard perfect for circular training and recreational use

Category
home

Showing first 6 of 24 on this page.

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": 1,
      "sku": "H57WBW2GVC",
      "name": "Tasty Silk Tuna",
      "slug": "tasty-silk-tuna-1",
      "description": "Our bear-friendly Chips ensures unlucky comfort for your pets",
      "category": "clothing",
      "brand": "Braun - Tromp",
      "price": 219.09,
      "salePrice": null,
      "currency": "USD",
      "inStock": false,
      "stockCount": 0,
      "rating": 2.3,
      "ratingCount": 657,
      "imageUrl": "https://picsum.photos/seed/product-1/800/800",
      "createdAt": "2026-03-10T02:02:36.337Z",
      "updatedAt": "2026-05-11T20:35:27.253Z"
    },
    {
      "id": 2,
      "sku": "ER5LTW0WDF",
      "name": "Unbranded Silk Cheese",
      "slug": "unbranded-silk-cheese-2",
      "description": "The sleek and hollow Mouse comes with red LED lighting for smart functionality",
      "category": "beauty",
      "brand": "Robel, Gulgowski and Kautzer",
      "price": 176.79,
      "salePrice": null,
      "currency": "USD",
      "inStock": false,
      "stockCount": 0,
      "rating": 3.7,
      "ratingCount": 906,
      "imageUrl": "https://picsum.photos/seed/product-2/800/800",
      "createdAt": "2025-05-26T17:02:08.345Z",
      "updatedAt": "2026-01-09T09:49:38.889Z"
    },
    {
      "id": 3,
      "sku": "ODZNZ6SANI",
      "name": "Soft Bronze Hat",
      "slug": "soft-bronze-hat-3",
      "description": "Stylish Car designed to make you stand out with next looks",
      "category": "toys",
      "brand": "Nader, Friesen and Cole",
      "price": 23.15,
      "salePrice": null,
      "currency": "USD",
      "inStock": true,
      "stockCount": 463,
      "rating": 3.1,
      "ratingCount": 2984,
      "imageUrl": "https://picsum.photos/seed/product-3/800/800",
      "createdAt": "2025-03-29T04:01:38.479Z",
      "updatedAt": "2025-05-13T19:24:51.075Z"
    }
  ],
  "meta": {
    "page": 1,
    "limit": 25,
    "total": 200,
    "totalPages": 8
  },
  "links": {
    "self": "/api/v1/products?page=1",
    "first": "/api/v1/products?page=1",
    "last": "/api/v1/products?page=8",
    "next": "/api/v1/products?page=2",
    "prev": null
  }
}

View full response →