example-data.com

products

products

Browse 200 products records. Free mock data API by Draftbit — fetch over REST or browse paginated HTML.

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.

curl -sS \
  "https://example-data.com/api/v1/products?limit=25"
const res = await fetch(
  "https://example-data.com/api/v1/products?limit=25"
);
const { data, meta } = await res.json();
import type { Product, ListEnvelope } from "https://example-data.com/types/products.d.ts";

const res = await fetch(
  "https://example-data.com/api/v1/products?limit=25"
);
const { data, meta } = (await res.json()) as ListEnvelope<Product>;
import requests

res = requests.get(
    "https://example-data.com/api/v1/products",
    params={"limit": 25},
)
data = res.json()
{
  "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 →

Draftbit