Get structured product recommendations and follow-up questions from Amazon's conversational shopping assistant — authentication, SSE parsing, and marketplace routing handled for you.
curl "https://api.scrapellm.com/scrapers/amazon_rufus" \ -H "X-API-Key: your_api_key" \ -G \ --data-urlencode "prompt=What brands do marketers recommend?" \ --data-urlencode "country=US" // Response { "scraper": "amazon_rufus", "status": "done", "result": "Marketers commonly recommend...", "links": [ { "url": "...", "text": "..." } ], "credits_used": 3 }
Built for developers and data teams who need reliable, structured output at any volume.
Rufus is gated to logged-in Amazon customers. ScrapeLLM handles all authentication — no Amazon account or MFA required on your side.
Rufus's curated list of 3–6 products per query, with ASIN, title, rating, reviews, image URL, and category.
3–5 follow-up questions Rufus generated — a direct source for SEO keyword expansion and chained queries.
Route requests to amazon.com, amazon.co.uk, amazon.de, amazon.es, and more via the country parameter.
Extract real buyer queries and the products Amazon surfaces for them — invaluable for pricing, merchandising, and brand strategy.
Submit requests asynchronously and poll for results — ideal for batch pipelines.
One GET request. Structured JSON back. Works in any language.
import requests response = requests.get( "https://api.scrapellm.com/scrapers/amazon_rufus", headers={"X-API-Key": "your_api_key"}, params={ "prompt": "What brands do marketers recommend?", "country": "US", } ) print(response.json())
const params = new URLSearchParams({ prompt: 'What brands do marketers recommend?', country: 'US', }); const response = await fetch( `https://api.scrapellm.com/scrapers/amazon_rufus?${params}`, { headers: { 'X-API-Key': 'your_api_key' } } ); const data = await response.json(); console.log(data);
curl "https://api.scrapellm.com/scrapers/amazon_rufus" \ -H "X-API-Key: your_api_key" \ -G \ --data-urlencode "prompt=What brands do marketers recommend?" \ --data-urlencode "country=US"
| Field | Type | Description |
|---|---|---|
| products | array | Rufus curated product list (asin, title, rating, reviews, image_url, category, url, footer) |
| related_questions | array | Follow-up shopping questions generated by Rufus |
| interim_messages | array | Loading-state messages localised to the marketplace |
| credits_used | integer | Credits consumed by this request |
| elapsed_ms | float | Request duration in milliseconds |
Teams across marketing, SEO, research, and product use ScrapeLLM to get structured Amazon Rufus data at the scale that matters.
Access all major AI and search providers through a single, consistent API.
1500 free credits. No credit card. Structured JSON in minutes.