products
products
Page 5 of 9.
Overview
-
Oriental Cotton Bacon
Predovic, Feil and Leffler
USD426.39
-
Electronic Concrete Bacon
Keebler Inc
USD345.69
-
Frozen Plastic Bacon
Morissette - Cronin
USD330.99
-
Ergonomic Cotton Table
Kuhic, Kuhic and Kub
USD474.39
-
Modern Marble Sausages
Swaniawski - Padberg
USD264.75
-
Fantastic Aluminum Keyboard
Reilly, Kutch and Glover
USD54.30
-
Modern Gold Computer
Franecki LLC
USD26.69
-
Small Concrete Sausages
Lubowitz LLC
USD278.05 USD154.72
-
Incredible Rubber Pants
Shields, Hilpert and Schamberger
USD339.95
-
Modern Bamboo Sausages
Rice LLC
USD166.89
-
Rustic Plastic Towels
Stokes - Frami
USD377.65
-
Rustic Ceramic Bacon
Hyatt - Bednar
USD224.39
-
Licensed Rubber Chair
Dooley Inc
USD117.19 USD91.41
-
Small Silk Mouse
Ratke, Brown and Reichert
USD94.19
-
Oriental Gold Chips
Yost - Schumm
USD281.90 USD242.59
-
Awesome Metal Chips
Wuckert Inc
USD74.89 USD63.03
-
Gorgeous Steel Salad
Friesen - Purdy
USD175.19
-
Intelligent Ceramic Keyboard
Rice and Sons
USD112.99
-
Refined Plastic Keyboard
Luettgen, Langosh and Turcotte
USD379.19
-
Electronic Steel Shoes
Schimmel LLC
USD481.39
-
Intelligent Cotton Chair
Wiegand, Hagenes and Kuphal
USD249.25
-
Fantastic Plastic Pants
Price, Stracke and Hartmann
USD498.19
-
Fresh Plastic Computer
Rice, Lowe and Franecki
USD460.89
-
Refined Silk Pants
Luettgen and Sons
USD466.09 USD366.76
Request
curl example
curl -sS \ "https://example-data.com/api/v1/products?limit=25"
JavaScript example
const res = await fetch(
"https://example-data.com/api/v1/products?limit=25"
);
const { data, meta } = await res.json(); TypeScript example
// Download once: mkdir -p types && curl -o types/products.d.ts https://example-data.com/types/products.d.ts
import type { Product, ListEnvelope } from "./types/products";
const res = await fetch(
"https://example-data.com/api/v1/products?limit=25"
);
const { data, meta } = (await res.json()) as ListEnvelope<Product>; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/products",
params={"limit": 25},
)
data = res.json() Response
{
"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&limit=24",
"first": "/api/v1/products?page=1&limit=24",
"last": "/api/v1/products?page=9&limit=24",
"next": "/api/v1/products?page=6&limit=24",
"prev": "/api/v1/products?page=4&limit=24"
}
}