How to Search Amazon Austria
Set country to "de" and query to "electronics". POST it to /api/v1/amazon/search and Scavio routes the request to amazon.de (cross-border), returning results in German (and English where available) with prices in the local currency. Results come back under data.products and are unsorted: the marketplace has no sort parameter, so order one page yourself if you need cheapest first.
Python Example
import requests
response = requests.post(
"https://api.scavio.dev/api/v1/amazon/search",
headers={
"Authorization": "Bearer sk_live_your_scavio_api_key",
"Content-Type": "application/json",
},
json={
"query": "electronics",
"country": "de",
},
)
data = response.json()["data"]
for product in data["products"][:5]:
print(product["title"])
print(f" {product.get('price')} {product.get('currency')} | {product.get('rating')} stars")
print(f" ASIN: {product['asin']}\n")cURL Example
curl -X POST "https://api.scavio.dev/api/v1/amazon/search" \
-H "Authorization: Bearer sk_live_your_scavio_api_key" \
-H "Content-Type: application/json" \
-d '{"query":"electronics","country":"de"}'Top Categories on amazon.de (cross-border)
- Electronics — a top-selling category in the Austria market. Search by brand or keyword; there is no category filter parameter.
- Home & kitchen — a top-selling category in the Austria market. Search by brand or keyword; there is no category filter parameter.
- Books — a top-selling category in the Austria market. Search by brand or keyword; there is no category filter parameter.
- Drogerie — a top-selling category in the Austria market. Search by brand or keyword; there is no category filter parameter.
Use Cases for Amazon Austria Data
- Price monitoring — track product prices in Austria in real time.
- Competitor analysis — monitor what sellers and brands rank for key queries.
- Market research — understand product-category landscape in Austria.
- Review signals — track rating and review count over time; review bodies are not returned.
- Shopping assistants — power AI agents with live Amazon Austria data.
Why Use Scavio for Amazon Austria
- No proxy setup. Scavio handles IP rotation and marketplace routing.
- Structured JSON. No HTML parsing: asin, price, currency, rating and reviews_count arrive as clean typed fields.
- Multi-marketplace. Switch between amazon.de (cross-border), amazon.com, amazon.co.uk, and more by changing one field.
- Free tier. 50 credits on signup. No card required.