GET
/
v1
/
products
/
{product_id}
/
offers
Product Offers
curl --request GET \
  --url https://api.zinc.io/v1/products/{product_id}/offers \
  --header 'Authorization: Basic <encoded-value>'
{
  "status": "processing",
  "retailer": "<string>",
  "offers": [
    {
      "addon": true,
      "condition": "New",
      "handling_days": {
        "max": 123,
        "min": 123
      },
      "international": true,
      "offer_id": "<string>",
      "price": 123,
      "marketplace_fulfilled": true,
      "seller": {
        "id": "<string>",
        "name": "<string>",
        "num_ratings": 123,
        "percent_positive": 123,
        "first_party": true
      },
      "shipping_options": [
        {
          "price": 123,
          "delivery_days": {
            "min": 123,
            "max": 123
          },
          "name": "<string>"
        }
      ],
      "prime_only": true,
      "member_only": true,
      "available": true
    }
  ]
}
Get information about all the offers for a particular product, including seller name, item price, shipping price, condition, seller reputation, and more.

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 offers retrieved successfully

Response for product offers