List products
List products, with optional pagination.
List products
curl --request GET \--url https://dummyjson.com/products
{"products": [{"id": 0,"title": "<string>","description": "<string>","category": "<string>","price": 0,"discountPercentage": 0,"rating": 0,"stock": 0,"brand": "<string>","thumbnail": "<string>"}],"total": 0,"skip": 0,"limit": 0}
Query Parameters
limitinteger
How many products to return (0 returns all).
skipinteger
How many products to skip (for pagination).
Response
200 · application/json
A page of products.
productsobject[]
The products on this page.
totalinteger
Total number of matching products.
skipinteger
How many were skipped.
limitinteger
How many were returned.
