# Check Amazon delivery availability by ZIP code

**Use case:** 

Check whether an Amazon product ships to ZIP code 10001. Return the confirmed destination, stock status, price, and delivery estimate.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://www.amazon.com/dp/B01MG4OX6Q"
    }
  ],
  "maxResultsPerTarget": 1,
  "maxTotalResults": 1,
  "maxSearchPages": 1,
  "resultDepth": "product",
  "maxVariantResultsPerProduct": 0,
  "fetchVariantPrices": false,
  "maxOffersPerProduct": 0,
  "includeSellerProfiles": false,
  "deliveryLocation": {
    "countryCode": "US",
    "postalCode": "10001"
  },
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

## Output

```json
{
  "status": {
    "label": "Status",
    "format": "string"
  },
  "asin": {
    "label": "ASIN",
    "format": "string"
  },
  "title": {
    "label": "Product title",
    "format": "string"
  },
  "brand": {
    "label": "Brand",
    "format": "string"
  },
  "marketplace.countryCode": {
    "label": "Country code"
  },
  "pricing.current.value": {
    "label": "Price",
    "format": "number"
  },
  "pricing.current.currency": {
    "label": "Currency"
  },
  "rating.value": {
    "label": "Rating",
    "format": "number"
  },
  "rating.count": {
    "label": "Ratings",
    "format": "number"
  },
  "availability.inStock": {
    "label": "In stock",
    "format": "boolean"
  },
  "delivery.estimate": {
    "label": "Estimate"
  },
  "source.kind": {
    "label": "Kind"
  },
  "source.position": {
    "label": "Position"
  },
  "url": {
    "label": "Product URL",
    "format": "string"
  },
  "error.message": {
    "label": "Message"
  }
}
```

## About this Actor

This example demonstrates how to use [Free Amazon Product Scraper: Prices & Sellers](https://apify.com/kingly_winter/amazon-product-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/kingly_winter/amazon-product-scraper) to learn more, explore other use cases, and run it yourself.