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, enable the residential-proxy option — Amazon's bot defenses target datacenter IP ranges aggressively.
Request
Send a POST to /v1/actors/amazon with a target url. Enable stealth or the residential-proxy option for sites with aggressive bot defenses.
curl -X POST https://api.ollagraph.com/v1/actors/amazon \
-H "Authorization: Bearer $OLLAGRAPH_API_KEY" \
-H "Content-Type: application/json" \
-d '{"url": "https://example.com"}'Response fields
| 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"
}
}Proxy & reliability
Amazon's bot wall blocks most datacenter IPs. Enable the residential-proxy option for production workloads.
See the full pipeline in the step-by-step recipe. Part of the actor catalog — all behind one bearer token. Failed calls auto-refund.