products
products
Page 4 of 9.
Overview
-
Soft Bamboo Ball
Dickinson, Cole and Howell
USD316.29 USD163.18
-
Licensed Granite Chair
Wilderman - Huel
USD464.85
-
Bespoke Rubber Computer
Breitenberg LLC
USD288.89
-
Elegant Silk Fish
Rice - Altenwerth
USD140.00 USD86.18
-
Tasty Marble Bacon
Greenholt Inc
USD48.59
-
Intelligent Ceramic Pants
Zulauf, Lowe and Bergnaum
USD376.95 USD315.21
-
Licensed Ceramic Shirt
Feeney - Kshlerin
USD62.10
-
Oriental Wooden Pizza
Murazik and Sons
USD223.79 USD163.36
-
Practical Marble Towels
Spinka - Schmeler
USD337.79
-
Tasty Steel Pizza
Pollich Inc
USD395.95
-
Unbranded Metal Bacon
Kertzmann, Feil and Waters
USD185.15
-
Electronic Wooden Towels
Spencer Inc
USD476.89
-
Generic Wooden Cheese
Jenkins, Conn and Pagac
USD177.35 USD155.84
-
Modern Bronze Shoes
Stiedemann LLC
USD107.65
-
Generic Aluminum Sausages
Hodkiewicz and Sons
USD26.89
-
Electronic Plastic Chips
Vandervort Group
USD262.75
-
Frozen Rubber Table
Zieme Inc
USD435.79
-
Gorgeous Bamboo Chicken
McCullough - Ebert
USD315.05
-
Recycled Silk Shoes
McDermott, Kerluke and Fay
USD363.30 USD200.65
-
Awesome Rubber Chicken
Kiehn, Bednar and Ledner
USD251.49
-
Intelligent Ceramic Table
Schaefer, Schmeler and O'Connell
USD170.95
-
Sleek Bronze Table
Lang - Runte
USD181.09
-
Practical Marble Towels
Kshlerin Group
USD102.15
-
Handmade Bronze Pizza
Dickinson Group
USD364.29 USD301.41
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": 73,
"sku": "W6KXR7864B",
"name": "Soft Bamboo Ball",
"slug": "soft-bamboo-ball-73",
"description": "Ergonomic Chips made with Bamboo for all-day athletic support",
"category": "kitchen",
"brand": "Dickinson, Cole and Howell",
"price": 316.29,
"salePrice": 163.18,
"currency": "USD",
"inStock": true,
"stockCount": 85,
"rating": 3.5,
"ratingCount": 4392,
"imageUrl": "https://picsum.photos/seed/product-73/800/800",
"createdAt": "2026-02-02T18:41:12.353Z",
"updatedAt": "2026-03-12T06:44:47.841Z"
},
{
"id": 74,
"sku": "B3O0P7MIZ5",
"name": "Licensed Granite Chair",
"slug": "licensed-granite-chair-74",
"description": "The maroon Table combines Aruba aesthetics with Astatine-based durability",
"category": "kitchen",
"brand": "Wilderman - Huel",
"price": 464.85,
"salePrice": null,
"currency": "USD",
"inStock": true,
"stockCount": 254,
"rating": 3.8,
"ratingCount": 909,
"imageUrl": "https://picsum.photos/seed/product-74/800/800",
"createdAt": "2025-04-22T03:19:06.235Z",
"updatedAt": "2025-07-21T20:15:55.511Z"
},
{
"id": 75,
"sku": "DR3QCN28Z6",
"name": "Bespoke Rubber Computer",
"slug": "bespoke-rubber-computer-75",
"description": "Introducing the Qatar-inspired Gloves, blending unknown style with local craftsmanship",
"category": "clothing",
"brand": "Breitenberg LLC",
"price": 288.89,
"salePrice": null,
"currency": "USD",
"inStock": true,
"stockCount": 129,
"rating": 3.5,
"ratingCount": 3178,
"imageUrl": "https://picsum.photos/seed/product-75/800/800",
"createdAt": "2025-04-25T17:23:07.965Z",
"updatedAt": "2025-05-21T11:24:42.204Z"
}
],
"meta": {
"page": 4,
"limit": 24,
"total": 200,
"totalPages": 9
},
"links": {
"self": "/api/v1/products?page=4&limit=24",
"first": "/api/v1/products?page=1&limit=24",
"last": "/api/v1/products?page=9&limit=24",
"next": "/api/v1/products?page=5&limit=24",
"prev": "/api/v1/products?page=3&limit=24"
}
}