E-Commerce
Amazon Offers
Every seller offer on an Amazon ASIN — price, currency, list price and discount, seller name and id, condition, who ships it, Prime eligibility, stock quantity, and which offer holds the buy box — as normalized JSON. 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/jsonquerystringrequiredThe Amazon ASIN. Named query to match the Product endpoint; asin is an accepted alias and one of the two must be present.
Example: B0GRVFY42Q
asinstringThe Amazon ASIN. Alias for query.
Example: B0GRVFY42Q
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
Request
from scavio import ScavioClient
client = ScavioClient(api_key="sk_live_your_key")
results = client.amazon.offers("B0GRVFY42Q")
print(results)Response