Amazon catalog enrichment
Use the URL-first API contract to keep this workflow tied to product URLs instead of marketplace-specific request parameters.
Amazon product data
Request structured product information from supported Amazon product URLs without making callers provide source IDs or ASIN-only parameters.
curl -sS https://api.productinformationapi.com/v1/product-information \
-H "Authorization: Bearer $PIA_API_TOKEN" \
-H "Content-Type: application/json" \
-d '{"productUrl":"https://www.amazon.co.uk/dp/B0EXAMPLE1"}' Endpoint map
Public callers send productUrl, or items[].productUrl for
bulk requests. Source, supplier key, and method metadata are derived by the API.
| Use case | Endpoint | Request body | Returns |
|---|---|---|---|
| Product information | POST /v1/product-information | { "productUrl": "https://www.example.com/product/123" } | Returns a structured product snapshot such as title, brand, images, attributes, ratings, and ranks. |
| Bulk information | POST /v1/product-information/bulk | { "items": [{ "productUrl": "https://www.example.com/product/123" }] } | Collects product information for batches of product URLs. |
Do not send caller-provided source, externalId, or
method values. Those fields may appear only as derived response metadata.
Response fields
The exact response depends on the endpoint, product URL, and source coverage, but these are the fields this page is designed around.
Use cases
Use the URL-first API contract to keep this workflow tied to product URLs instead of marketplace-specific request parameters.
Use the URL-first API contract to keep this workflow tied to product URLs instead of marketplace-specific request parameters.
Use the URL-first API contract to keep this workflow tied to product URLs instead of marketplace-specific request parameters.
Use the URL-first API contract to keep this workflow tied to product URLs instead of marketplace-specific request parameters.
Limitations
Coverage is best effort by supported marketplace, retailer, and product URL.
Polling cadence is owned by the client integration.
The API does not claim official marketplace affiliation or unlimited scraping.
FAQ
No. It is a product data API that can support Amazon-related workflows where coverage is enabled.
No. Send the Amazon product URL. The API derives supplier keys internally when the URL is supported.
Yes. Use the stock endpoint for availability and offers, and the information endpoint for product metadata.
Yes. Use the bulk stock or bulk information endpoint with items[].productUrl.