cURL
curl --request GET \ --url https://api.henrylabs.ai/v0/products/search \ --header 'Content-Type: application/json' \ --header 'x-api-key: <api-key>' \ --data '{ "query": "Nike Air Max", "limit": 20, "color": "Red", "gender": "Men", "manufacturer": "Nike", "lowerThanPrice": 100, "greaterThanPrice": 100, "size": "10", "region": "US" }'
{ "success": true, "status": "<string>", "message": "<string>", "data": [ { "id": "<string>", "name": "<string>", "description": "<string>", "price": 123, "originalPrice": "<string>", "currency": "<string>", "imageUrl": "<string>", "productLink": "<string>", "source": "<string>" } ] }
Search for products across multiple e-commerce platforms.
Products found successfully
The response is of type object.
object