API Description

The Delivery Time API retrieves the delivery estimates currently displayed on an Amazon product-detail page, covering Lead Time, free-delivery timing, paid-delivery timing, and fastest-delivery timing. This gives you a more complete view of the product timeline from preparation to arrival.

Free, paid, and fastest-delivery estimates change dynamically based on the product, delivery method, and delivery conditions. When inventory, preparation, or customization affects fulfillment, the response may also include the corresponding Lead Time.

Use the existing Amazon Scrape API with parserName set to amzDeliveryTime.

Request URL

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

Request Headers

ParametersParameter valueTypeDescription
Content-Typeapplication/jsonstringData format
AuthorizationBearer xxxstringAuthorization Token

Request Parameters

ParametersRequiredTypeDescription
urlYesstringAmazon product-detail URL, for example https://www.amazon.com/dp/B0B4NLGCH5
Note: If omitted, site and content are required.
siteYesstringSite information
Note: site is optional if url is provided.
Supported countries / marketplaces (8):
amz_us (United States) / amz_de (Germany) / amz_uk (United Kingdom) / amz_jp (Japan) / amz_fr (France) / amz_it (Italy) / amz_es (Spain) / amz_ca (Canada)
contentYesstringAmazon ASIN, for example B0B4NLGCH5
Note: content is optional if url is provided.
parserNameYesstringMust be amzDeliveryTime
formatYesstringMust be json
bizContext.zipcodeNostringThe value must match the marketplace; the backend selects one when omitted. US: 10041 / 90001 / 60601 / 84104; UK: W1S 3AS / EH15 1LR / M13 9PL / M2 5BQ; Canada: M4C 4Y4 / V6E 1N2 / H3G 2K8 / T2R 0G5; Germany: 80331 / 10115 / 20095 / 60306; France: 75000 / 69001 / 06000 / 13000; Japan: 100-0004 / 060-8588 / 163-8001 / 900-8570; Italy: 20019 / 50121 / 00042 / 30100; Spain: 41001 / 28001 / 08001 / 46001
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",
    "site": "amz_us",
    "content": "B0B4NLGCH5",
    "parserName": "amzDeliveryTime",
    "format": "json"
  }'

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"
          }
        }]
      }
    }]
  }
}

Credit Consumption

  • Average response time: 5s
  • Credit Consumption:
format parameterCredits Consumption
Structured page datajson2 Credit/Per Request