example-data.com

products

products

Page 9 of 9.

Handmade Rubber Tuna

Handmade Rubber Tuna

Beer, Smith and Morissette

USD219.55 USD113.33

Out of stock

★ 2.9 (803)

Savor the creamy essence in our Hat, designed for silent culinary adventures

Category
beauty
Refined Cotton Shoes

Refined Cotton Shoes

Pfannerstill - Goldner

USD488.15 USD295.67

In stock

★ 1.5 (2978)

New Towels model with 88 GB RAM, 784 GB storage, and numb features

Category
toys
Small Aluminum Mouse

Small Aluminum Mouse

Cole - Gleason

USD168.99

Out of stock

★ 4.2 (2689)

Featuring Berkelium-enhanced technology, our Cheese offers unparalleled rotating performance

Category
clothing
Electronic Bronze Pizza

Electronic Bronze Pizza

Leffler - Leffler

USD204.29

In stock

★ 4.9 (2077)

The sleek and austere Fish comes with azure LED lighting for smart functionality

Category
home
Practical Aluminum Bike

Practical Aluminum Bike

Baumbach - Schumm

USD236.29

In stock

★ 2.0 (3268)

Savor the tangy essence in our Ball, designed for miserable culinary adventures

Category
home
Fresh Granite Bacon

Fresh Granite Bacon

Steuber, Hayes and Reichel

USD277.00

In stock

★ 2.7 (4255)

Discover the whale-like agility of our Shirt, perfect for sugary users

Category
sports

Showing first 6 of 8 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": 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",
    "next": null,
    "prev": "/api/v1/products?page=8"
  }
}
Draftbit