Bulk Amazon data

Bulk Amazon product data API for URL batches

Use dedicated bulk endpoints when Amazon-related workflows need many product stock checks or product information records at once.

Product page URL https://www.amazon.co.uk/dp/B0EXAMPLE1
Product information POST /v1/product-information

Use product information when catalog, enrichment, onboarding, or content-quality workflows need structured details.

Request body
{
  "productUrl": "https://www.amazon.co.uk/dp/B0EXAMPLE1"
}
Response preview
{
  "productInformation": {
    "title": "Replacement water filter cartridge",
    "brand": "AquaPro",
    "images": [
      "https://cdn.example/products/water-filter-123/main.jpg"
    ],
    "attributes": {
      "capacity": "1 liter",
      "packSize": "2"
    },
    "ratings": {
      "average": 4.6,
      "reviewCount": 1284
    }
  },
  "creditsRemaining": 2480
}
titlebrandimagesattributesratings

Request shape and public routes.

Single requests send productUrl. Bulk requests send items[].productUrl. Bearer auth is required for product and usage routes.

Use case Endpoint Request body Returns
Bulk stock checks POST /v1/product-stock/bulk { "items": [{ "productUrl": "https://shop.example/p/123" }] } Runs stock checks for many product page URLs and returns per-item status.
Bulk product information POST /v1/product-information/bulk { "items": [{ "productUrl": "https://shop.example/p/123" }] } Collects product information for many product page URLs with per-item results.

Readable JSON before code snippets.

Use this page’s example to confirm the body shape, expected response fields, and endpoint mapping before copying language-specific code from the OpenAPI reference.

Request body
{
  "items": [
    {
      "productUrl": "https://www.amazon.co.uk/dp/B0EXAMPLE1"
    }
  ]
}
Response preview
{
  "requestId": "req_bulk_01HZX7",
  "total": 2,
  "succeeded": 2,
  "failed": 0,
  "retryable": 0,
  "results": [
    {
      "index": 0,
      "httpStatus": 200
    }
  ]
}

Fields this workflow usually reads.

Exact fields depend on endpoint, product page URL, and enabled coverage, but these are the fields this page is designed around.

requestIdtotalsucceededfailedretryableresults[]httpStatus

Where this page fits.

Each page targets a distinct workflow, field set, or buying question.

Amazon imports

Process batches of supported Amazon product URLs for onboarding.

Batch catalog enrichment

Collect product details for many Amazon URLs with per-item outcomes.

Bulk stock checks

Refresh availability and offer data for Amazon URL lists.

Retryable URL jobs

Separate retryable failures from successful items in one batch response.

Coverage and operating boundaries.

Coverage is enabled by supported retailer, marketplace, and product page URL.

Polling cadence belongs to the client integration and is discussed during onboarding.

The API is not an official marketplace partner API and does not promise unlimited collection.

Short answers for evaluation.

Visible answers are mirrored in structured data for eligible generated pages.

Is Product Information API an official Amazon API?

No. It is an independent product data API that can support Amazon-related workflows where coverage is enabled.

Do I need to send an ASIN?

No. Send the Amazon product URL. The API derives supplier keys internally when the URL is supported.

Can I check Amazon stock and product details separately?

Yes. Use the stock endpoint for availability and offers, and the information endpoint for product details.

Can I send Amazon URLs in bulk?

Yes. Use the bulk stock or bulk information endpoint with items[].productUrl.