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

POST https://scrapeapi.pangolinfo.com/api/v1/scrape

Request Headers

ParametersParameter valueTypeDescription
Content-Typeapplication/jsonstringData format
AuthorizationBearer xxxstringAuthorization Token

Request Parameters

ParameterRequiredTypeDescription
urlYesstringAmazon product-detail URL, for example https://www.amazon.com/dp/B0B4NLGCH5
parserNameYesstringMust be amzDeliveryTime
formatYesstringMust be json
bizContext.zipcodeNostringMust match the URL marketplace country; the backend selects a country-matched ZIP when omitted
timeoutNointegerDownstream timeout in milliseconds; defaults to 90000

Request Example

curl --request POST \
  --url https://scrapeapi.pangolinfo.com/api/v1/scrape \
  --header 'Content-Type: application/json' \
  --header 'Authorization: Bearer YOUR_API_KEY' \
  --data '{
    "url": "https://www.amazon.com/dp/B0B4NLGCH5",
    "parserName": "amzDeliveryTime",
    "format": "json",
    "bizContext": {
      "zipcode": "10041"
    }
  }'

Response Data

data.json[0].data.results[0] contains every standard field documented by the Amazon Scrape API product-detail response, plus:

FieldTypeDescription
frequentlyReturnedItemstringHigh-return-rate warning; empty when absent
leadTimestringHandling / preparation time; empty when unavailable
delivery.deliveryTimestringStandard delivery time
delivery.fastestDeliverystringFastest delivery time from the standard product response
delivery.deliveryTimeFreestringFree-shipping delivery time
delivery.deliveryTimePaystringPaid-shipping delivery time
delivery.deliveryFasteststringFastest delivery option time

Response Example

{
  "code": 0,
  "message": "ok",
  "pointCost": 2.0,
  "data": {
    "json": [{
      "data": {
        "results": [{
          "asin": "B0B4NLGCH5",
          "title": "Example product",
          "frequentlyReturnedItem": "Frequently returned item",
          "leadTime": "Usually ships within 2 to 3 days",
          "delivery": {
            "deliveryTime": "Thursday, August 13",
            "fastestDelivery": "Monday, August 10",
            "deliveryTimeFree": "Thursday, August 13",
            "deliveryTimePay": "Monday, August 10",
            "deliveryFastest": "Monday, August 10"
          }
        }]
      }
    }]
  }
}