Deals
GET /request
The Deals Parameters are applicable when making a request with type=deals to retrieve Lightning Deal / Daily Deals results from Amazon's Today's Deals page. The category of deals and Amazon domain are specified using the category_id and amazon_domain parameter. The parameters should be appended as querystring parameters to the Product Data API GET HTTP request.
Deals results are retrieved from the deals listing page on Amazon.
Category IDs You can retrieve category IDs for each amazon_domain using the Categories API. Category IDs are also returned in the categories array in each type=deals response.
Multiple category IDs can be supplied, comma seperated, in the category_id parameter. For example, to request deals for Beauty ( 3760911 ) and Electronics ( 172282 ) categories on amazon.com the parameters would be category_id=3760911,172282&amazon_domain=amazon.com .
If you wish to retrieve Deals from the deals homepage for a given amazon_domain , simply omit the category_id parameter entirely.
For example, to request deals results for Electronics category ID of 172282 on amazon.com the request would be:
The following parameters are available for all requests made when type=deals .
Note that the common include_html=true , output=html , customer_zipcode and customer_location parameters cannot be used when making Deals requests.
Parameter | Required | Description |
---|---|---|
category_id | optional | A comma-seperated list of Deals category IDs to retrieve deals results from, as returned by the Categories API . Category IDs are also returned in the categories array in each type=deals response . Multiple category IDs can be supplied, comma seperated, in the category_id parameter. For example, to request deals for Beauty ( 3760911 ) and Electronics ( 172282 ) categories on amazon.com the parameters would be category_id=3760911,172282&amazon_domain=amazon.com . If you wish to retrieve Deals from the deals homepage for a given amazon_domain , simply omit the category_id parameter entirely. |
amazon_domain | optional | The Amazon domain to retrieve Deals from for the category ID(s) specified in the category_id parameter. For a full list of supported Amazon domains see Supported Amazon Domains . |
deal_types | optional | The types of deal to include. If you omit the deal_types parameter then all deal types are included. Note multiple deal types can be specified, comma-separated. Valid values are:
|
price_range | optional | Only includes deals for products within a specified price range If you omit the price_range parameter then all deals are included. Note Price tiers will vary based on amazon_domain but for amazon.com the current price tiers are:
|
discount | optional | Only include deals for products with with a discount range. If you omit the discount discount parameter deals for products with any discount are included. Valid values are:
|
prime_early_access | optional | Determines whether to filter to only Prime Early Access deals: Valid values are:
|
prime_exclusive | optional | Determines whether to filter to only Prime Exclusive deals: Valid values are:
|
minimum_rating | optional | Only include deals for products with a customer rating meeting the specified criteria. If you omit the minimum_rating parameter deals for products with any rating are included. Valid values are:
|
page | optional | The current page of deals results to retrieve. Inspect the pagination.total_pages property in the Deals results to see how many pages of deal results are available. |
max_page | optional | Use the max_page parameter to get multiple pages of results in one request. The API will automatically paginate through pages and concatenate the results into one response. See the Pagination docs for more information. |
Next Steps Deals Results