example-data.com

products

products

Page 4 of 9.

Soft Bamboo Ball

Soft Bamboo Ball

Dickinson, Cole and Howell

USD316.29 USD163.18

In stock

★ 3.5 (4392)

Ergonomic Chips made with Bamboo for all-day athletic support

Category
kitchen
Licensed Granite Chair

Licensed Granite Chair

Wilderman - Huel

USD464.85

In stock

★ 3.8 (909)

The maroon Table combines Aruba aesthetics with Astatine-based durability

Category
kitchen
Bespoke Rubber Computer

Bespoke Rubber Computer

Breitenberg LLC

USD288.89

In stock

★ 3.5 (3178)

Introducing the Qatar-inspired Gloves, blending unknown style with local craftsmanship

Category
clothing
Elegant Silk Fish

Elegant Silk Fish

Rice - Altenwerth

USD140.00 USD86.18

Out of stock

★ 3.9 (4536)

The Allan Mouse is the latest in a series of poor products from Murray, Keebler and Ortiz

Category
beauty
Tasty Marble Bacon

Tasty Marble Bacon

Greenholt Inc

USD48.59

In stock

★ 3.7 (699)

Ergonomic Car made with Marble for all-day concrete support

Category
electronics
Intelligent Ceramic Pants

Intelligent Ceramic Pants

Zulauf, Lowe and Bergnaum

USD376.95 USD315.21

In stock

★ 4.5 (374)

New Tuna model with 82 GB RAM, 76 GB storage, and tattered features

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": 73,
      "sku": "W6KXR7864B",
      "name": "Soft Bamboo Ball",
      "slug": "soft-bamboo-ball-73",
      "description": "Ergonomic Chips made with Bamboo for all-day athletic support",
      "category": "kitchen",
      "brand": "Dickinson, Cole and Howell",
      "price": 316.29,
      "salePrice": 163.18,
      "currency": "USD",
      "inStock": true,
      "stockCount": 85,
      "rating": 3.5,
      "ratingCount": 4392,
      "imageUrl": "https://picsum.photos/seed/product-73/800/800",
      "createdAt": "2026-02-02T18:41:12.353Z",
      "updatedAt": "2026-03-12T06:44:47.841Z"
    },
    {
      "id": 74,
      "sku": "B3O0P7MIZ5",
      "name": "Licensed Granite Chair",
      "slug": "licensed-granite-chair-74",
      "description": "The maroon Table combines Aruba aesthetics with Astatine-based durability",
      "category": "kitchen",
      "brand": "Wilderman - Huel",
      "price": 464.85,
      "salePrice": null,
      "currency": "USD",
      "inStock": true,
      "stockCount": 254,
      "rating": 3.8,
      "ratingCount": 909,
      "imageUrl": "https://picsum.photos/seed/product-74/800/800",
      "createdAt": "2025-04-22T03:19:06.235Z",
      "updatedAt": "2025-07-21T20:15:55.511Z"
    },
    {
      "id": 75,
      "sku": "DR3QCN28Z6",
      "name": "Bespoke Rubber Computer",
      "slug": "bespoke-rubber-computer-75",
      "description": "Introducing the Qatar-inspired Gloves, blending unknown style with local craftsmanship",
      "category": "clothing",
      "brand": "Breitenberg LLC",
      "price": 288.89,
      "salePrice": null,
      "currency": "USD",
      "inStock": true,
      "stockCount": 129,
      "rating": 3.5,
      "ratingCount": 3178,
      "imageUrl": "https://picsum.photos/seed/product-75/800/800",
      "createdAt": "2025-04-25T17:23:07.965Z",
      "updatedAt": "2025-05-21T11:24:42.204Z"
    }
  ],
  "meta": {
    "page": 4,
    "limit": 24,
    "total": 200,
    "totalPages": 9
  },
  "links": {
    "self": "/api/v1/products?page=4",
    "next": "/api/v1/products?page=5",
    "prev": "/api/v1/products?page=3"
  }
}
Draftbit