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