GET
/
v1
/
products
/
{product_id}
Get Product Details
curl --request GET \
  --url https://api.zinc.io/v1/products/{product_id} \
  --header 'Authorization: Basic <encoded-value>'
{
  "status": "processing",
  "retailer": "<string>",
  "product_id": "<string>",
  "timestamp": "<string>",
  "title": "<string>",
  "product_details": [
    "<string>"
  ],
  "feature_bullets": [
    "<string>"
  ],
  "brand": "<string>",
  "main_image": "<string>",
  "images": [
    "<string>"
  ],
  "variant_specifics": [
    {
      "dimension": "<string>",
      "value": "<string>"
    }
  ],
  "all_variants": [
    {
      "variant_specifics": [
        {
          "dimension": "<string>",
          "value": "<string>"
        }
      ],
      "product_id": "<string>"
    }
  ],
  "categories": [
    "<string>"
  ],
  "authors": [
    "<string>"
  ],
  "product_description": "<string>",
  "epids": [
    {
      "type": "<string>",
      "value": "<string>"
    }
  ],
  "epids_map": [
    "<string>"
  ],
  "package_dimensions": [
    {
      "amount": 123,
      "unit": "<string>"
    }
  ],
  "item_location": "<string>",
  "original_retail_price": 123,
  "price": 123,
  "review_count": 123,
  "stars": 123,
  "question_count": 123,
  "asin": "<string>",
  "fresh": true,
  "pantry": true,
  "handmade": true,
  "digital": true,
  "buyapi_hint": true,
  "item_number": "<string>"
}
Get up to date information on the title, description, manufacturer details, item specifics, and more for any product on our supported retailers.

Authorizations

Authorization
string
header
required

Use your client token as the username. Leave the password blank.

Path Parameters

product_id
string
required

The retailer's unique identifier for a particular product

Query Parameters

retailer
string
required

The retailer for the product. See Supported Retailers for a list of supported retailers.

max_age
number

A number in seconds setting the maximum age of the response. Cannot specify with newer_than.

newer_than
number

A timestamp setting the minimum time the response should be retrieved from. Cannot specify with max_age.

async
boolean
default:false

Determines whether the resulting response will be asynchronous. Defaults to false.

Response

200 - application/json

Product details retrieved successfully

The response is of type object.