example-data.com

products

products

Page 7 of 9.

Ergonomic Aluminum Soap

Ergonomic Aluminum Soap

Sporer LLC

USD495.25 USD347.26

In stock

★ 1.1 (4199)

Our salty-inspired Pants brings a taste of luxury to your overdue lifestyle

Category
books
Recycled Concrete Pizza

Recycled Concrete Pizza

West LLC

USD414.05

In stock

★ 3.0 (1840)

Featuring Polonium-enhanced technology, our Hat offers unparalleled warlike performance

Category
home
Fantastic Steel Sausages

Fantastic Steel Sausages

Cummerata, Aufderhar and Sipes

USD167.99

In stock

★ 2.1 (4810)

Oriental Gloves designed with Aluminum for knowledgeable performance

Category
sports
Incredible Ceramic Computer

Incredible Ceramic Computer

Stoltenberg - Gleichner

USD36.55

In stock

★ 1.6 (756)

Our polar bear-friendly Chair ensures taut comfort for your pets

Category
sports
Ergonomic Cotton Bike

Ergonomic Cotton Bike

Huel Group

USD254.99

In stock

★ 2.3 (3626)

Professional-grade Cheese perfect for puny training and recreational use

Category
kitchen
Recycled Plastic Tuna

Recycled Plastic Tuna

Nolan, Lubowitz and Reinger

USD295.90

In stock

★ 1.4 (1730)

Savor the fluffy essence in our Ball, designed for ethical culinary adventures

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": 145,
      "sku": "BLQ61EHHA8",
      "name": "Ergonomic Aluminum Soap",
      "slug": "ergonomic-aluminum-soap-145",
      "description": "Our salty-inspired Pants brings a taste of luxury to your overdue lifestyle",
      "category": "books",
      "brand": "Sporer LLC",
      "price": 495.25,
      "salePrice": 347.26,
      "currency": "USD",
      "inStock": true,
      "stockCount": 437,
      "rating": 1.1,
      "ratingCount": 4199,
      "imageUrl": "https://picsum.photos/seed/product-145/800/800",
      "createdAt": "2024-06-07T15:11:34.349Z",
      "updatedAt": "2025-04-07T03:16:23.562Z"
    },
    {
      "id": 146,
      "sku": "R2P64XSDMO",
      "name": "Recycled Concrete Pizza",
      "slug": "recycled-concrete-pizza-146",
      "description": "Featuring Polonium-enhanced technology, our Hat offers unparalleled warlike performance",
      "category": "home",
      "brand": "West LLC",
      "price": 414.05,
      "salePrice": null,
      "currency": "USD",
      "inStock": true,
      "stockCount": 23,
      "rating": 3,
      "ratingCount": 1840,
      "imageUrl": "https://picsum.photos/seed/product-146/800/800",
      "createdAt": "2025-06-25T16:19:32.936Z",
      "updatedAt": "2025-12-21T00:18:01.135Z"
    },
    {
      "id": 147,
      "sku": "4EXPTGWNN6",
      "name": "Fantastic Steel Sausages",
      "slug": "fantastic-steel-sausages-147",
      "description": "Oriental Gloves designed with Aluminum for knowledgeable performance",
      "category": "sports",
      "brand": "Cummerata, Aufderhar and Sipes",
      "price": 167.99,
      "salePrice": null,
      "currency": "USD",
      "inStock": true,
      "stockCount": 388,
      "rating": 2.1,
      "ratingCount": 4810,
      "imageUrl": "https://picsum.photos/seed/product-147/800/800",
      "createdAt": "2024-10-28T18:22:18.271Z",
      "updatedAt": "2026-01-14T18:34:00.370Z"
    }
  ],
  "meta": {
    "page": 7,
    "limit": 24,
    "total": 200,
    "totalPages": 9
  },
  "links": {
    "self": "/api/v1/products?page=7",
    "next": "/api/v1/products?page=8",
    "prev": "/api/v1/products?page=6"
  }
}
Draftbit