example-data.com

products

products

Page 8 of 9.

Electronic Ceramic Bike

Electronic Ceramic Bike

Carter - Sawayn

USD372.29

In stock

★ 4.4 (3206)

Featuring Copper-enhanced technology, our Keyboard offers unparalleled worthy performance

Category
home
Refined Plastic Pants

Refined Plastic Pants

Brakus, O'Reilly and Kuhic

USD149.69 USD93.23

In stock

★ 1.8 (288)

Modern Shoes designed with Gold for ambitious performance

Category
kitchen
Gorgeous Ceramic Tuna

Gorgeous Ceramic Tuna

West, Feeney and Mohr

USD396.99

In stock

★ 1.2 (1231)

Kutch Inc's most advanced Pizza technology increases agreeable capabilities

Category
sports
Intelligent Plastic Table

Intelligent Plastic Table

Russel, Kling and Parisian

USD121.95 USD80.50

Out of stock

★ 4.3 (4953)

New violet Shoes with ergonomic design for decent comfort

Category
books
Small Plastic Bacon

Small Plastic Bacon

Wyman and Sons

USD146.30 USD126.54

In stock

★ 2.4 (4147)

Discover the parrot-like agility of our Chicken, perfect for oddball users

Category
home
Elegant Ceramic Chips

Elegant Ceramic Chips

Kling - Reynolds

USD495.15 USD283.12

In stock

★ 2.7 (3205)

Discover the shark-like agility of our Fish, perfect for dependent users

Category
toys

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": 169,
      "sku": "G09JIXK4R0",
      "name": "Electronic Ceramic Bike",
      "slug": "electronic-ceramic-bike-169",
      "description": "Featuring Copper-enhanced technology, our Keyboard offers unparalleled worthy performance",
      "category": "home",
      "brand": "Carter - Sawayn",
      "price": 372.29,
      "salePrice": null,
      "currency": "USD",
      "inStock": true,
      "stockCount": 84,
      "rating": 4.4,
      "ratingCount": 3206,
      "imageUrl": "https://picsum.photos/seed/product-169/800/800",
      "createdAt": "2024-10-28T06:19:06.124Z",
      "updatedAt": "2026-03-09T05:20:01.943Z"
    },
    {
      "id": 170,
      "sku": "Y2TOIIY7ZM",
      "name": "Refined Plastic Pants",
      "slug": "refined-plastic-pants-170",
      "description": "Modern Shoes designed with Gold for ambitious performance",
      "category": "kitchen",
      "brand": "Brakus, O'Reilly and Kuhic",
      "price": 149.69,
      "salePrice": 93.23,
      "currency": "USD",
      "inStock": true,
      "stockCount": 335,
      "rating": 1.8,
      "ratingCount": 288,
      "imageUrl": "https://picsum.photos/seed/product-170/800/800",
      "createdAt": "2024-12-14T18:42:57.473Z",
      "updatedAt": "2025-12-12T18:02:25.185Z"
    },
    {
      "id": 171,
      "sku": "47EQDRRPMS",
      "name": "Gorgeous Ceramic Tuna",
      "slug": "gorgeous-ceramic-tuna-171",
      "description": "Kutch Inc's most advanced Pizza technology increases agreeable capabilities",
      "category": "sports",
      "brand": "West, Feeney and Mohr",
      "price": 396.99,
      "salePrice": null,
      "currency": "USD",
      "inStock": true,
      "stockCount": 492,
      "rating": 1.2,
      "ratingCount": 1231,
      "imageUrl": "https://picsum.photos/seed/product-171/800/800",
      "createdAt": "2025-09-16T14:35:45.653Z",
      "updatedAt": "2026-04-17T15:26:51.240Z"
    }
  ],
  "meta": {
    "page": 8,
    "limit": 24,
    "total": 200,
    "totalPages": 9
  },
  "links": {
    "self": "/api/v1/products?page=8",
    "next": "/api/v1/products?page=9",
    "prev": "/api/v1/products?page=7"
  }
}
Draftbit