Amazon scraping API

Amazon scraping API for product URL workflows

Use supported Amazon product URLs with the same stock and product information jobs available across the broader API.

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

Use stock when availability, offers, price, seller, and delivery signals drive the workflow.

Request body
{
  "productUrl": "https://www.amazon.co.uk/dp/B0EXAMPLE1"
}
Response preview
{
  "externalId": "B0EXAMPLE1",
  "source": "amazon_gb",
  "method": "checkStock",
  "outcome": "OK",
  "inStock": true,
  "offerCount": 2,
  "offers": [
    {
      "price": 49.95,
      "currency": "GBP",
      "seller": "AquaPro",
      "fulfilment": "FBA",
      "deliveryDays": 2
    },
    {
      "price": 54.99,
      "currency": "GBP",
      "seller": "PartsHub",
      "fulfilment": "FBM",
      "deliveryDays": 4
    }
  ],
  "cacheStatus": "live",
  "creditsRemaining": 4871
}
inStockofferCountpricesellerdeliveryDays

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
Check stock POST /v1/product-stock { "productUrl": "https://shop.example/p/123" } Returns availability, offer count, price, currency, seller, fulfilment, and delivery fields for one product page URL.
Get product information POST /v1/product-information { "productUrl": "https://shop.example/p/123" } Returns title, brand, images, attributes, ratings, category data, and other product details for one product page URL.
Usage and credits GET /v1/usage No request body Returns credit balance, rate class, limits, plan data, and recent usage rows for the authenticated token.

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
{
  "productUrl": "https://www.amazon.co.uk/dp/B0EXAMPLE1"
}
Response preview
{
  "externalId": "B0EXAMPLE1",
  "source": "amazon_gb",
  "method": "checkStock",
  "outcome": "OK",
  "inStock": true,
  "offerCount": 2,
  "offers": [
    {
      "price": 49.95,
      "currency": "GBP",
      "seller": "AquaPro",
      "fulfilment": "FBA",
      "deliveryDays": 2
    },
    {
      "price": 54.99,
      "currency": "GBP",
      "seller": "PartsHub",
      "fulfilment": "FBM",
      "deliveryDays": 4
    }
  ],
  "cacheStatus": "live",
  "creditsRemaining": 4871
}

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.

inStockofferCountoffers[]productInformationcreditsRemaining

Where this page fits.

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

Amazon product checks

Submit supported Amazon product URLs and choose stock or information responses.

Availability monitoring

Track in-stock and offer-count fields for products that matter to operations.

Product data enrichment

Add Amazon title, brand, image, attribute, and rating fields where coverage is enabled.

Offer review

Inspect seller, price, fulfilment, and delivery fields through the stock endpoint.

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.