products
products
Page 7 of 9.
Overview
-
Ergonomic Aluminum Soap
Sporer LLC
USD495.25 USD347.26
-
Recycled Concrete Pizza
West LLC
USD414.05
-
Fantastic Steel Sausages
Cummerata, Aufderhar and Sipes
USD167.99
-
Incredible Ceramic Computer
Stoltenberg - Gleichner
USD36.55
-
Ergonomic Cotton Bike
Huel Group
USD254.99
-
Recycled Plastic Tuna
Nolan, Lubowitz and Reinger
USD295.90
-
Practical Aluminum Tuna
Satterfield - Herman
USD347.69
-
Small Silk Car
Mraz - Cassin
USD478.99
-
Oriental Bamboo Bike
Schmitt - Abshire
USD314.85 USD223.13
-
Electronic Aluminum Towels
Kemmer Group
USD464.25
-
Unbranded Plastic Chicken
Daniel - D'Amore
USD376.25
-
Fresh Bronze Table
Hamill - Baumbach
USD237.55
-
Small Metal Soap
O'Conner, Bode and Yost
USD363.30
-
Licensed Bronze Shoes
Weber - Wiegand
USD110.29
-
Intelligent Aluminum Chips
Schamberger, Heidenreich and Cronin
USD284.89
-
Fresh Steel Pants
Swift - Collins
USD82.34
-
Sleek Bamboo Chair
Erdman, Swift and Schuster
USD216.75
-
Fresh Bronze Towels
Waelchi, Walter and Botsford
USD131.69
-
Refined Cotton Mouse
Cassin - Homenick
USD355.34
-
Bespoke Ceramic Gloves
Runolfsson Inc
USD55.89
-
Electronic Rubber Hat
Ankunding, Hessel and Brekke
USD89.79
-
Ergonomic Bronze Bacon
Hauck Group
USD151.09
-
Generic Bronze Computer
Metz, Labadie and Donnelly
USD73.64
-
Luxurious Ceramic Car
Carroll, Kohler and McDermott
USD335.85
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": 145,
"sku": "BLQ61EHHA8",
"name": "Ergonomic Aluminum Soap",
"slug": "ergonomic-aluminum-soap-145",
"description": "Our salty-inspired Pants brings a taste of luxury to your overdue lifestyle",
"category": "books",
"brand": "Sporer LLC",
"price": 495.25,
"salePrice": 347.26,
"currency": "USD",
"inStock": true,
"stockCount": 437,
"rating": 1.1,
"ratingCount": 4199,
"imageUrl": "https://picsum.photos/seed/product-145/800/800",
"createdAt": "2024-06-07T15:11:34.349Z",
"updatedAt": "2025-04-07T03:16:23.562Z"
},
{
"id": 146,
"sku": "R2P64XSDMO",
"name": "Recycled Concrete Pizza",
"slug": "recycled-concrete-pizza-146",
"description": "Featuring Polonium-enhanced technology, our Hat offers unparalleled warlike performance",
"category": "home",
"brand": "West LLC",
"price": 414.05,
"salePrice": null,
"currency": "USD",
"inStock": true,
"stockCount": 23,
"rating": 3,
"ratingCount": 1840,
"imageUrl": "https://picsum.photos/seed/product-146/800/800",
"createdAt": "2025-06-25T16:19:32.936Z",
"updatedAt": "2025-12-21T00:18:01.135Z"
},
{
"id": 147,
"sku": "4EXPTGWNN6",
"name": "Fantastic Steel Sausages",
"slug": "fantastic-steel-sausages-147",
"description": "Oriental Gloves designed with Aluminum for knowledgeable performance",
"category": "sports",
"brand": "Cummerata, Aufderhar and Sipes",
"price": 167.99,
"salePrice": null,
"currency": "USD",
"inStock": true,
"stockCount": 388,
"rating": 2.1,
"ratingCount": 4810,
"imageUrl": "https://picsum.photos/seed/product-147/800/800",
"createdAt": "2024-10-28T18:22:18.271Z",
"updatedAt": "2026-01-14T18:34:00.370Z"
}
],
"meta": {
"page": 7,
"limit": 24,
"total": 200,
"totalPages": 9
},
"links": {
"self": "/api/v1/products?page=7&limit=24",
"first": "/api/v1/products?page=1&limit=24",
"last": "/api/v1/products?page=9&limit=24",
"next": "/api/v1/products?page=8&limit=24",
"prev": "/api/v1/products?page=6&limit=24"
}
}