🛒
E-commerce
Amazon product
Send an Amazon product URL and get back the structured fields a price intelligence pipeline cares about. The actor handles US, UK, DE, JP and most other Amazon storefronts. For consistent results at production volume, supply a residential proxy via the `proxy` parameter — Amazon's bot defenses target datacenter IP ranges aggressively.
POST /v1/actors/amazon Fields returned
| Field | Type | Example |
|---|---|---|
| title | string | Echo Dot (5th Gen) Smart speaker |
| price | string | $49.99 |
| rating | number | 4.7 |
| review_count | number | 184523 |
| asin | string | B08N5WRWNW |
| availability | string | In Stock |
| image_url | string | https://m.media-amazon.com/... |
Sample response
{
"status": "success",
"url": "https://www.amazon.com/dp/B08N5WRWNW",
"time_ms": 1240,
"data": {
"title": "Echo Dot (5th Gen) Smart speaker",
"price": "$49.99",
"rating": 4.7,
"review_count": 184523,
"asin": "B08N5WRWNW",
"availability": "In Stock",
"image_url": "https://m.media-amazon.com/images/I/..."
}
} Production guidance
Amazon's bot wall blocks most datacenter IPs. Supply a residential proxy via `proxy` for production workloads.
Quickstart
curl -X POST https://api.datasonar.dev/v1/actors/amazon \
-H "Authorization: Bearer osk_..." \
-H "Content-Type: application/json" \
-d '{"url": "https://www.amazon.com/dp/..."}'Amazon product questions
How accurate is the Amazon product actor? ▾
For pages that return a normal response, the actor extracts every documented field reliably. For pages that hit anti-bot defenses, the actor returns a clear error rather than guessing at incomplete data — your pipeline can decide whether to retry with a residential proxy.
How much does each amazon product call cost? ▾
Every actor call counts as a single request against your monthly quota — same as every other endpoint. There are no per-vertical surcharges.
What happens if Amazon changes their page structure? ▾
We monitor structural changes on every site we support and update the actor before customer pipelines notice. Subscribe to the changelog to be notified when a vertical actor gets a new field or fix.
Can I request a custom field? ▾
Yes. Business and Enterprise customers can request additional fields on any actor. We typically ship within one to two weeks of a clear specification.
Try the amazon product actor free.
1,000 requests every month, every endpoint, no credit card.