GET
/
products
/
search
Search products
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>"
    }
  ]
}
This endpoint allows you to search for products across various e-commerce platforms and filter the results.

Authorizations

x-api-key
string
header
required

Body

application/json

Response

200
application/json

Products found successfully

The response is of type object.