Amazon
Amazon Search
Search Amazon product listings across 22 marketplaces — ASIN, title, price, currency, rating, review count, sponsored flag, badge, sales volume, and delivery estimate — as normalized JSON, plus the page's refinement filters and related searches. Costs 1 credit per request.
Authorizations
AuthorizationstringheaderrequiredBearer authentication header of the form Bearer <token>, where <token> is your Scavio API key (e.g. Bearer sk_live_your_key).
Body
application/jsonquerystringrequiredProduct search query (1-500 characters).
Example: laptop
countrystringdefault:usMarketplace country code, ISO 3166-1 alpha-2. One of the 22 marketplaces Amazon operates: us, ae, au, be, br, ca, cn, de, eg, es, fr, gb, in, it, jp, mx, nl, pl, sa, se, sg, tr. An unrecognized value falls back to us.
Example: de
domainstringDeprecated alias for country. The Amazon domain suffix (com, co.uk, de, com.br), translated to the matching country code. Use country instead.
Example: co.uk
pagenumberdefault:1Results page, 1-based. One page per request; each page is a separate call and costs 1 credit.
Example: 2
start_pagenumberDeprecated alias for page.
Example: 2
Request
from scavio import ScavioClient
client = ScavioClient(api_key="sk_live_your_key")
results = client.amazon.search("laptop")
print(results)Response