products
products
Page 8 of 9.
Overview
-
Electronic Ceramic Bike
Carter - Sawayn
USD372.29
-
Refined Plastic Pants
Brakus, O'Reilly and Kuhic
USD149.69 USD93.23
-
Gorgeous Ceramic Tuna
West, Feeney and Mohr
USD396.99
-
Intelligent Plastic Table
Russel, Kling and Parisian
USD121.95 USD80.50
-
Small Plastic Bacon
Wyman and Sons
USD146.30 USD126.54
-
Elegant Ceramic Chips
Kling - Reynolds
USD495.15 USD283.12
-
Fantastic Wooden Bacon
Emard LLC
USD443.29
-
Tasty Marble Table
Franey and Sons
USD312.89
-
Refined Bamboo Computer
Dietrich, Zieme and Moore
USD47.15
-
Rustic Rubber Bacon
Pfannerstill - Crona
USD116.85
-
Handmade Cotton Sausages
Haag, Schowalter and Jerde
USD38.49
-
Practical Plastic Gloves
Ryan, Greenholt and Roberts
USD185.45
-
Electronic Bamboo Bacon
Cronin, Blick and Veum
USD9.75 USD5.62
-
Small Silk Salad
Dickinson - Moen
USD470.49 USD368.15
-
Tasty Granite Chicken
Hegmann - Bode
USD61.69
-
Generic Aluminum Shoes
Raynor, Cummings and Considine
USD352.10
-
Fresh Marble Car
Lockman Inc
USD486.29 USD398.84
-
Practical Metal Chips
Langosh, Crist and Schuppe
USD436.99 USD251.31
-
Unbranded Marble Chicken
Wilkinson - Effertz
USD318.05 USD211.17
-
Handmade Granite Towels
Dickens - Miller
USD327.15
-
Modern Marble Gloves
Senger - Stamm
USD73.69
-
Luxurious Wooden Table
Runte LLC
USD195.98
-
Rustic Concrete Hat
Waelchi - Maggio
USD110.09
-
Handcrafted Marble Pizza
Zboncak - Watsica
USD265.39
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": 169,
"sku": "G09JIXK4R0",
"name": "Electronic Ceramic Bike",
"slug": "electronic-ceramic-bike-169",
"description": "Featuring Copper-enhanced technology, our Keyboard offers unparalleled worthy performance",
"category": "home",
"brand": "Carter - Sawayn",
"price": 372.29,
"salePrice": null,
"currency": "USD",
"inStock": true,
"stockCount": 84,
"rating": 4.4,
"ratingCount": 3206,
"imageUrl": "https://picsum.photos/seed/product-169/800/800",
"createdAt": "2024-10-28T06:19:06.124Z",
"updatedAt": "2026-03-09T05:20:01.943Z"
},
{
"id": 170,
"sku": "Y2TOIIY7ZM",
"name": "Refined Plastic Pants",
"slug": "refined-plastic-pants-170",
"description": "Modern Shoes designed with Gold for ambitious performance",
"category": "kitchen",
"brand": "Brakus, O'Reilly and Kuhic",
"price": 149.69,
"salePrice": 93.23,
"currency": "USD",
"inStock": true,
"stockCount": 335,
"rating": 1.8,
"ratingCount": 288,
"imageUrl": "https://picsum.photos/seed/product-170/800/800",
"createdAt": "2024-12-14T18:42:57.473Z",
"updatedAt": "2025-12-12T18:02:25.185Z"
},
{
"id": 171,
"sku": "47EQDRRPMS",
"name": "Gorgeous Ceramic Tuna",
"slug": "gorgeous-ceramic-tuna-171",
"description": "Kutch Inc's most advanced Pizza technology increases agreeable capabilities",
"category": "sports",
"brand": "West, Feeney and Mohr",
"price": 396.99,
"salePrice": null,
"currency": "USD",
"inStock": true,
"stockCount": 492,
"rating": 1.2,
"ratingCount": 1231,
"imageUrl": "https://picsum.photos/seed/product-171/800/800",
"createdAt": "2025-09-16T14:35:45.653Z",
"updatedAt": "2026-04-17T15:26:51.240Z"
}
],
"meta": {
"page": 8,
"limit": 24,
"total": 200,
"totalPages": 9
},
"links": {
"self": "/api/v1/products?page=8&limit=24",
"first": "/api/v1/products?page=1&limit=24",
"last": "/api/v1/products?page=9&limit=24",
"next": "/api/v1/products?page=9&limit=24",
"prev": "/api/v1/products?page=7&limit=24"
}
}