example-data.com

products

products

Page 5 of 9.

Oriental Cotton Bacon

Oriental Cotton Bacon

Predovic, Feil and Leffler

USD426.39

Out of stock

★ 4.3 (3344)

The black Hat combines Jamaica aesthetics with Thorium-based durability

Category
toys
Electronic Concrete Bacon

Electronic Concrete Bacon

Keebler Inc

USD345.69

In stock

★ 1.2 (2558)

Discover the fond new Bike with an exciting mix of Cotton ingredients

Category
home
Frozen Plastic Bacon

Frozen Plastic Bacon

Morissette - Cronin

USD330.99

In stock

★ 3.0 (1937)

New orchid Shirt with ergonomic design for doting comfort

Category
kitchen
Ergonomic Cotton Table

Ergonomic Cotton Table

Kuhic, Kuhic and Kub

USD474.39

In stock

★ 1.8 (1861)

Savor the spicy essence in our Fish, designed for unique culinary adventures

Category
home
Modern Marble Sausages

Modern Marble Sausages

Swaniawski - Padberg

USD264.75

In stock

★ 3.4 (2504)

Our moist-inspired Table brings a taste of luxury to your rusty lifestyle

Category
home
Fantastic Aluminum Keyboard

Fantastic Aluminum Keyboard

Reilly, Kutch and Glover

USD54.30

In stock

★ 4.1 (971)

The olive Towels combines Afghanistan aesthetics with Silver-based durability

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": 97,
      "sku": "VWY7D2DDH8",
      "name": "Oriental Cotton Bacon",
      "slug": "oriental-cotton-bacon-97",
      "description": "The black Hat combines Jamaica aesthetics with Thorium-based durability",
      "category": "toys",
      "brand": "Predovic, Feil and Leffler",
      "price": 426.39,
      "salePrice": null,
      "currency": "USD",
      "inStock": false,
      "stockCount": 0,
      "rating": 4.3,
      "ratingCount": 3344,
      "imageUrl": "https://picsum.photos/seed/product-97/800/800",
      "createdAt": "2024-12-05T01:06:45.313Z",
      "updatedAt": "2025-03-02T01:21:43.072Z"
    },
    {
      "id": 98,
      "sku": "F82Q2DU0GK",
      "name": "Electronic Concrete Bacon",
      "slug": "electronic-concrete-bacon-98",
      "description": "Discover the fond new Bike with an exciting mix of Cotton ingredients",
      "category": "home",
      "brand": "Keebler Inc",
      "price": 345.69,
      "salePrice": null,
      "currency": "USD",
      "inStock": true,
      "stockCount": 453,
      "rating": 1.2,
      "ratingCount": 2558,
      "imageUrl": "https://picsum.photos/seed/product-98/800/800",
      "createdAt": "2024-08-16T06:17:47.845Z",
      "updatedAt": "2025-10-21T16:56:25.041Z"
    },
    {
      "id": 99,
      "sku": "I0S6CEZTIF",
      "name": "Frozen Plastic Bacon",
      "slug": "frozen-plastic-bacon-99",
      "description": "New orchid Shirt with ergonomic design for doting comfort",
      "category": "kitchen",
      "brand": "Morissette - Cronin",
      "price": 330.99,
      "salePrice": null,
      "currency": "USD",
      "inStock": true,
      "stockCount": 247,
      "rating": 3,
      "ratingCount": 1937,
      "imageUrl": "https://picsum.photos/seed/product-99/800/800",
      "createdAt": "2024-12-24T07:38:08.160Z",
      "updatedAt": "2025-10-13T23:30:36.672Z"
    }
  ],
  "meta": {
    "page": 5,
    "limit": 24,
    "total": 200,
    "totalPages": 9
  },
  "links": {
    "self": "/api/v1/products?page=5",
    "next": "/api/v1/products?page=6",
    "prev": "/api/v1/products?page=4"
  }
}
Draftbit