Amazon Scrape API
Amazon Delivery Time API
Fetch full Amazon listing details plus address-dependent delivery and handling estimates.
API Description
The Amazon Delivery Time API inherits every field from the standard product-detail response and additionally parses the high-return warning, handling lead time, free delivery, paid delivery, and fastest delivery timing.
Use the existing Amazon Scrape API with parserName set to amzDeliveryTime. Each successful call costs 2 points. Delivery results depend on the address represented by bizContext.zipcode.
Request URL
Request Headers
| Parameters | Parameter value | Type | Description |
|---|---|---|---|
| Content-Type | application/json | string | Data format |
| Authorization | Bearer xxx | string | Authorization Token |
Request Parameters
| Parameter | Required | Type | Description |
|---|---|---|---|
url | Yes | string | Amazon product-detail URL, for example https://www.amazon.com/dp/B0B4NLGCH5 |
parserName | Yes | string | Must be amzDeliveryTime |
format | Yes | string | Must be json |
bizContext.zipcode | No | string | Must match the URL marketplace country; the backend selects a country-matched ZIP when omitted |
timeout | No | integer | Downstream timeout in milliseconds; defaults to 90000 |
Request Example
Response Data
data.json[0].data.results[0] contains every standard field documented by the Amazon Scrape API product-detail response, plus:
| Field | Type | Description |
|---|---|---|
frequentlyReturnedItem | string | High-return-rate warning; empty when absent |
leadTime | string | Handling / preparation time; empty when unavailable |
delivery.deliveryTime | string | Standard delivery time |
delivery.fastestDelivery | string | Fastest delivery time from the standard product response |
delivery.deliveryTimeFree | string | Free-shipping delivery time |
delivery.deliveryTimePay | string | Paid-shipping delivery time |
delivery.deliveryFastest | string | Fastest delivery option time |

