Skip to main content
GET
/
products
/
details
Product details
curl --request GET \
  --url https://api.sandbox.henrylabs.ai/v0/products/details \
  --header 'x-api-key: <api-key>'
{
  "success": true,
  "status": "<string>",
  "message": "<string>",
  "data": {
    "productResults": {
      "thumbnails": [
        "<string>"
      ],
      "title": "<string>",
      "brand": "<string>",
      "reviews": 123,
      "rating": 123,
      "stores": [
        {
          "name": "<string>",
          "link": "<string>",
          "price": "<string>",
          "shipping": "<string>",
          "total": "<string>"
        }
      ],
      "userReviews": [
        {
          "title": "<string>",
          "text": "<string>",
          "userName": "<string>",
          "source": "<string>",
          "rating": 123
        }
      ],
      "variants": [
        {
          "title": "<string>",
          "items": [
            {
              "name": "<string>",
              "selected": true,
              "available": true
            }
          ]
        }
      ]
    },
    "relatedSearches": [
      {
        "query": "<string>",
        "image": "<string>",
        "link": "<string>"
      }
    ]
  }
}

Authorizations

x-api-key
string
header
required

Query Parameters

productId
string
required

Product ID

Minimum length: 1
Example:

"1234567890"

Response

Product details retrieved successfully

success
boolean
required
status
string
required
message
string
required
data
object
required