E-Commerce
Amazon Product
Get full details for an Amazon product by ASIN — title, price, buybox, ratings, images, variations, and technical details — as JSON.
POST/api/v1/amazon/product
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 (sent as query).
Example: B0FQFB8FMG
domainstringAmazon marketplace domain (com, co.uk, de, ...).
Example: com
countrystringCountry code for localized results.
languagestringLanguage code.
currencystringCurrency code.
deviceenum<string>Device to emulate: desktop, mobile, tablet.
zip_codestringZIP code for localized results.
autoselect_variantbooleanAuto-select a product variant.
Request
from scavio import ScavioClient
client = ScavioClient(api_key="sk_live_your_key")
results = client.amazon.product("B0FQFB8FMG")
print(results)Response
"ads": null,
"answered_questions_count": 0,
"asin": "B0FQFB8FMG",
"asin_in_url": "B0FQFB8FMG",
"brand": "Apple",
"bullet_points": "WORLD’S BEST IN-EAR ACTIVE NOISE CANCELLATION — Removes up to 2x more unwanted noise than AirPods Pro 2* so you can stay fully immersed in the moment.*
BREAKTHR…",
"category": [],
"coupon": "",
"coupon_discount_percentage": null,
"currency": "USD",
"deal_type": null,
"description": "",
"developer_info": {},
"discount_end": null,
"discount_percentage": 10,
"has_videos": true,
"highest_price": 225,
"important_information": null,
"is_addon_item": null,
"is_prime": true,
"item_form": null,
"lightning_deal": null,
"manufacturer": "Apple",
"max_quantity": 3,
"other_sellers": "New & Used (9) from $207.40 & FREE Shipping.",
"page": 1,
"page_type": "Product",
"parent_asin": "B0FQFB8FMG",
"price": 225,
"price_buybox": 225,
"price_shipping": 0,
"price_sns": 0,
"price_strikethrough": 249,
"pricing_count": 1,
"pricing_str": "New & Used (9) from $207.40$207.40 & FREE Shipping.",
"pricing_url": "https://www.amazon.com/gp/offer-listing/B0FQFB8FMG/ref=dp_olp_ALL_mbc?ie=UTF8&condition=ALL",
"product_dimensions": "1.1 x 0.8 x 1.2 inches",
"product_name": "Apple AirPods Pro 3 Wireless Earbuds, Active Noise Cancellation, Live Translation, Heart Rate Sensing, Hearing Aid Feature, Bluetooth Headphones, Spatial Audio,…",
"product_overview": null,
"rating": 4.5,
"reviews_count": 11186,
"sales_rank": [],
"sns_discounts": [],
"stock": "In Stock",
"store_url": "/stores/Apple/page/77D9E1F7-0337-4282-9DB6-B6B8FB2DC98D?lp_asin=B0FQFB8FMG&ref_=ast_bln",
"title": "Apple AirPods Pro 3 Wireless Earbuds, Active Noise Cancellation, Live Translation, Heart Rate Sensing, Hearing Aid Feature, Bluetooth Headphones, Spatial Audio,…",
"url": "https://www.amazon.com/dp/B0FQFB8FMG?language=en_US",
"variations": [],
"warranty_and_support": null
},
"response_time": 1.87,
"credits_used": 1,
"credits_remaining": 49
}