How to Search Amazon Netherlands
Set country to "nl" and query to "electronics". POST it to /api/v1/amazon/search and Scavio routes the request to amazon.nl, returning results in Dutch (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": "nl",
},
)
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":"nl"}'Top Categories on amazon.nl
- Electronics — a top-selling category in the Netherlands market. Search by brand or keyword; there is no category filter parameter.
- Home & kitchen — a top-selling category in the Netherlands market. Search by brand or keyword; there is no category filter parameter.
- Books — a top-selling category in the Netherlands market. Search by brand or keyword; there is no category filter parameter.
- Toys — a top-selling category in the Netherlands market. Search by brand or keyword; there is no category filter parameter.
Use Cases for Amazon Netherlands Data
- Price monitoring — track product prices in Netherlands in real time.
- Competitor analysis — monitor what sellers and brands rank for key queries.
- Market research — understand product-category landscape in Netherlands.
- Review signals — track rating and review count over time; review bodies are not returned.
- Shopping assistants — power AI agents with live Amazon Netherlands data.
Why Use Scavio for Amazon Netherlands
- 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.nl, amazon.com, amazon.co.uk, and more by changing one field.
- Free tier. 50 credits on signup. No card required.