Amazon Product API
Scrape Amazon Product data with one API call. Returns full product detail for an Amazon ASIN: title, brand, description, price, rating, image gallery, specifications, and variant ASINs. For this product's customer reviews, call GET /v1/amazon/reviews with the same ASIN (shared upstream call).
Last updated September 2026Maintained by the SocialCrawl team
Returns one Amazon product by ASIN: title, brand, description, price, rating, image gallery, specifications, and variant ASINs.
Use it when you already have the ASIN and need full product detail rather than search results. For its reviews, call the reviews endpoint.
Searching 65 platforms in parallel
What can you do with the Product API?
The Product endpoint gives you structured Amazon data with computed fields in a single request. No scraping infrastructure to build or maintain.
Example Request
curl -H "x-api-key: YOUR_API_KEY" \
"https://www.socialcrawl.dev/v1/amazon/product?asin=B0FQFB8FMG&country=US"import requests
response = requests.get(
"https://www.socialcrawl.dev/v1/amazon/product",
params={
'asin': 'B0FQFB8FMG',
'country': 'US',
},
headers={"x-api-key": "YOUR_API_KEY"},
)
data = response.json()const response = await fetch(
"https://www.socialcrawl.dev/v1/amazon/product?asin=B0FQFB8FMG&country=US",
{
headers: { "x-api-key": "YOUR_API_KEY" },
},
);
const data = await response.json();Parameters
| Parameter | Required | Description |
|---|---|---|
| asin | Yes | 10-character Amazon ASIN (the product identifier). |
| country | No | Amazon marketplace as an ISO 3166-1 alpha-2 country code (default US). Supported: US, GB, CA, DE, FR, IT, ES, JP, IN, MX, BR, AU, NL. Note: non-US marketplaces (especially EU) are best-effort: the upstream provider is slower and occasionally times out for these; such calls are refunded, and US is the most reliable marketplace. (US | GB | CA | DE | FR | IT | ES | JP | IN | MX | BR | AU | NL) |
What does the Amazon Product API return?
Every response follows one unified schema. Here is a real, unmodified response body, so you can see the exact fields you get back before spending a credit.
Example response
{
"success": true,
"platform": "amazon",
"endpoint": "/v1/amazon/product",
"data": {
"product": {
"id": "B0FQFB8FMG",
"url": "https://www.amazon.com/dp/B0FQFB8FMG",
"title": "Apple AirPods Pro 3 Wireless Earbuds, Active Noise Cancellation, Live Translation, Heart Rate Sensing, Hearing Aid Feature, Bluetooth Headphones, Spatial Audio, High-Fidelity Sound, USB-C Charging",
"description": "About this item 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.*\nBREAKTHROUGH AUDIO PERFORMANCE — Experience breathtaking, three-dimensional audio with AirPods Pro 3. A new acoustic architecture delivers transformed bass, detailed clarity so you can hear every instrument, and stunningly vivid vocals.\nHEART RATE SENSING — Built-in heart rate sensing lets you track your heart rate and calories burned for up to 50 different workout types.* With iPhone, you will have access to the Move ring, step count, and the new Workout Buddy,* powered by Apple Intelligence.*\nLIVE TRANSLATION — Communicate across language barriers using Live Translation,* enabled by Apple Intelligence.*\nEXTENDED BATTERY LIFE — Get up to 8 hours of listening time with Active Noise Cancellation on a single charge. Or up to 10 hours in Transparency using the Hearing Aid feature.*\nSECURE IN-EAR FIT — All-new ear tips, now in five sizes, provide a more secure, personalized fit and better audio performance across the board.*\nHEARING HEALTH — Take a hearing test in the comfort of your home.* Use the Hearing Aid feature, now with automatic Conversation Boost, for clearer communication.* And active Hearing Protection helps prevent exposure to loud environmental noise.*\nPERSONALIZED LISTENING — Next-generation Adaptive EQ customizes a sound signature for your unique ear geometry and fit.* And inward-facing microphones measure what you’re hearing for real-time adjustments.\nMAGICAL EXPERIENCE — Automatic Switching lets you seamlessly switch between your Apple devices.* And Audio Sharing lets you share a song or show between two sets of AirPods on your iPhone, iPad, or Apple TV.*\nShow more See more product details",
"seller": null,
"brand": "Apple",
"price": {
"current": 199.99,
"original": 249,
"currency": "USD"
},
"rating": {
"average": 4.5,
"count": 12442
},
"image_urls": [
"https://m.media-amazon.com/images/I/61solmQSSlL._AC_SL1500_.jpg",
"https://m.media-amazon.com/images/I/71dt0UurPZL._AC_SL1500_.jpg"
],
"availability": "In Stock",
"reviews_count": null,
"specifications": [
{
"group": "Technical Details",
"name": "Product Dimensions",
"value": "1.1 x 0.8 x 1.2 inches"
},
{
"group": "Technical Details",
"name": "Item Weight",
"value": "2.56 ounces"
}
]
}
},
"credits_used": 5,
"credits_remaining": 9999,
"request_id": "req_example000000",
"cached": false
}Live sample illustrating the unified response shape. Field values reflect the record you query.
How does the Amazon Product API work?
Send a GET request with your API key and get back clean, structured JSON in our unified schema. Supported computed fields are populated when the source provides the required inputs.
Method
GET
Response
JSON
How do you scrape social media data in seconds?
The fastest social media scraping API for developers. Scrape profiles, posts, comments, and analytics from 65 platforms covering 10B+ monthly active users.
One schema, every platform
Query 65 platforms with identical response structures. Write your integration once.
Computed fields, not just scraped
When an endpoint supports these metrics and the source provides the required inputs, the normalized record includes engagement_rate, estimated_reach, content_category, and language. Ready to use.
See your data before you code
Visual Data Explorer. Paste any URL, get rich result cards, sortable tables, CSV export.
import requests
response = requests.get(
'https://www.socialcrawl.dev/v1/tiktok/profile',
params={'handle': 'charlidamelio'},
headers={'x-api-key': 'sc_YOUR_API_KEY'}
)
data = response.json(){
"success": true,
"platform": "tiktok",
"data": {
"author": {
"username": "charlidamelio",
"followers": 152400000
},
"engagement": {
"likes": 12400000000,
"engagement_rate": 0.087
},
"metadata": {
"language": "en",
"content_category": "lifestyle"
}
}
}Have a question? We got answers
Find answers to frequently asked questions about SocialCrawl's API, pricing, and capabilities.
Contact usHow do I get full Amazon product detail from an ASIN?
What fields does the Amazon Product API return?
How do I get the reviews for a product?
Can I get product data from non-US Amazon marketplaces?
How much does the Amazon Product API cost?
Ask AI about SocialCrawl
Ready to scrape Amazon Product data?
Get your API key and start pulling Amazon data in under 60 seconds.
