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