Retrieve a collection of dummy products focused on men's watches. This API endpoint provides details such as category, price, thumbnails, images, title, and ID for each product in the list.

https://api.freeapi.app/api/v1/public/randomproducts?page=1&limit=10&inc=category%2Cprice%2Cthumbnail%2Cimages%2Ctitle%2Cid&query=mens-watches

Example-> JSON data

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 { "category": "mens-watches", "price": 120, "thumbnail": "https://cdn.dummyjson.com/product-images/61/thumbnail.jpg", "images": [ "https://cdn.dummyjson.com/product-images/61/1.jpg", "https://cdn.dummyjson.com/product-images/61/2.png", "https://cdn.dummyjson.com/product-images/61/3.jpg" ], "title": "Leather Straps Wristwatch", "id": 61 }, { "category": "mens-watches", "price": 46, "thumbnail": "https://cdn.dummyjson.com/product-images/62/thumbnail.jpg", "images": [ "https://cdn.dummyjson.com/product-images/62/1.jpg", "https://cdn.dummyjson.com/product-images/62/2.jpg" ], "title": "Waterproof Leather Brand Watch", "id": 62 }, { "category": "mens-watches", "price": 50, "thumbnail": "https://cdn.dummyjson.com/product-images/63/thumbnail.webp", "images": [ "https://cdn.dummyjson.com/product-images/63/1.jpg", "https://cdn.dummyjson.com/product-images/63/2.jpg", "https://cdn.dummyjson.com/product-images/63/3.png", "https://cdn.dummyjson.com/product-images/63/4.jpeg" ], "title": "Royal Blue Premium Watch", "id": 63 }

Get details of a specific product using its ID with this API endpoint. Provide a valid product ID as a parameter to receive comprehensive information about the product matching the provided ID.

https://api.freeapi.app/api/v1/public/randomproducts/{product_id}

Example-> JSON data

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 { "data": { "brand": "Golden", "category": "home-decoration", "description": "Attractive DesignMetallic materialFour key hooksReliable & DurablePremium Quality", "discountPercentage": 2.92, "id": 30, "images": [ "https://i.dummyjson.com/data/products/30/1.jpg", "https://i.dummyjson.com/data/products/30/2.jpg", "https://i.dummyjson.com/data/products/30/3.jpg", "https://i.dummyjson.com/data/products/30/thumbnail.jpg" ], "price": 30, "rating": 4.92, "stock": 54, "thumbnail": "https://i.dummyjson.com/data/products/30/thumbnail.jpg", "title": "Key Holder" }, "message": "Product fetched successfully", "statusCode": 200, "success": true }

Retrieve details of a randomly generated dummy product using this API endpoint. You'll receive a response containing detailed information about a product randomly selected from the database.

https://api.freeapi.app/api/v1/public/randomproducts/product/random

Example-> JSON data

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 { "data": { "brand": "Golden", "category": "home-decoration", "description": "Attractive DesignMetallic materialFour key hooksReliable & DurablePremium Quality", "discountPercentage": 2.92, "id": 30, "images": [ "https://i.dummyjson.com/data/products/30/1.jpg", "https://i.dummyjson.com/data/products/30/2.jpg", "https://i.dummyjson.com/data/products/30/3.jpg", "https://i.dummyjson.com/data/products/30/thumbnail.jpg" ], "price": 30, "rating": 4.92, "stock": 54, "thumbnail": "https://i.dummyjson.com/data/products/30/thumbnail.jpg", "title": "Key Holder" }, "message": "Product fetched successfully", "statusCode": 200, "success": true }