example-data.com

products

products

Page 6 of 9.

Recycled Plastic Tuna

Recycled Plastic Tuna

Baumbach LLC

USD42.64

In stock

★ 3.2 (3065)

The Emerson Chicken is the latest in a series of blaring products from Haley, Hansen and Abshire

Category
books
Recycled Gold Car

Recycled Gold Car

Olson, Treutel and Greenfelder

USD44.85

In stock

★ 3.9 (608)

Professional-grade Sausages perfect for sore training and recreational use

Category
kitchen
Elegant Concrete Table

Elegant Concrete Table

Kozey, Hintz and Haley

USD54.09

In stock

★ 3.4 (4520)

New teal Table with ergonomic design for athletic comfort

Category
clothing
Unbranded Granite Mouse

Unbranded Granite Mouse

Bartoletti, Stanton and O'Kon

USD444.59 USD344.83

In stock

★ 2.6 (3846)

Ergonomic Sausages made with Steel for all-day worthless support

Category
toys
Oriental Aluminum Salad

Oriental Aluminum Salad

Bradtke - Bailey

USD8.09 USD6.81

In stock

★ 1.1 (930)

Discover the stingy new Chips with an exciting mix of Metal ingredients

Category
home
Tasty Gold Salad

Tasty Gold Salad

Langworth, Jacobi and Walsh

USD50.29 USD40.59

In stock

★ 4.9 (574)

Discover the unfortunate new Hat with an exciting mix of Gold ingredients

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": 121,
      "sku": "JX5PO3VSOT",
      "name": "Recycled Plastic Tuna",
      "slug": "recycled-plastic-tuna-121",
      "description": "The Emerson Chicken is the latest in a series of blaring products from Haley, Hansen and Abshire",
      "category": "books",
      "brand": "Baumbach LLC",
      "price": 42.64,
      "salePrice": null,
      "currency": "USD",
      "inStock": true,
      "stockCount": 386,
      "rating": 3.2,
      "ratingCount": 3065,
      "imageUrl": "https://picsum.photos/seed/product-121/800/800",
      "createdAt": "2024-07-30T16:46:47.843Z",
      "updatedAt": "2025-06-11T19:56:08.468Z"
    },
    {
      "id": 122,
      "sku": "9NI6P92JUQ",
      "name": "Recycled Gold Car",
      "slug": "recycled-gold-car-122",
      "description": "Professional-grade Sausages perfect for sore training and recreational use",
      "category": "kitchen",
      "brand": "Olson, Treutel and Greenfelder",
      "price": 44.85,
      "salePrice": null,
      "currency": "USD",
      "inStock": true,
      "stockCount": 147,
      "rating": 3.9,
      "ratingCount": 608,
      "imageUrl": "https://picsum.photos/seed/product-122/800/800",
      "createdAt": "2025-09-21T08:43:59.893Z",
      "updatedAt": "2025-10-06T13:26:06.284Z"
    },
    {
      "id": 123,
      "sku": "XW46X7E086",
      "name": "Elegant Concrete Table",
      "slug": "elegant-concrete-table-123",
      "description": "New teal Table with ergonomic design for athletic comfort",
      "category": "clothing",
      "brand": "Kozey, Hintz and Haley",
      "price": 54.09,
      "salePrice": null,
      "currency": "USD",
      "inStock": true,
      "stockCount": 26,
      "rating": 3.4,
      "ratingCount": 4520,
      "imageUrl": "https://picsum.photos/seed/product-123/800/800",
      "createdAt": "2026-03-24T11:20:12.873Z",
      "updatedAt": "2026-05-17T19:57:15.314Z"
    }
  ],
  "meta": {
    "page": 6,
    "limit": 24,
    "total": 200,
    "totalPages": 9
  },
  "links": {
    "self": "/api/v1/products?page=6",
    "next": "/api/v1/products?page=7",
    "prev": "/api/v1/products?page=5"
  }
}
Draftbit