Amazon Product Search API
Scrape Amazon Product Search data with one API call. Returns organic Amazon search results for a keyword: title, price, list price, rating, image, and ASIN per product. Results reflect the chosen marketplace (default United States). Sponsored placements and related searches are excluded in v1. Paginate with the universal cursor parameter; pass depth instead if you need a single large page.
Last updated September 2026Maintained by the SocialCrawl team
Returns Amazon search results for a keyword: title, price, rating, image, and ASIN for each product, from the marketplace you pick.
Use it when you have a keyword and need to find products or their ASINs, then call the product endpoint for full detail.
Searching 65 platforms in parallel
What can you do with the Product Search API?
The Product Search 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-search?query=wireless+earbuds&country=US"import requests
response = requests.get(
"https://www.socialcrawl.dev/v1/amazon/product-search",
params={
'query': 'wireless earbuds',
'country': 'US',
},
headers={"x-api-key": "YOUR_API_KEY"},
)
data = response.json()const response = await fetch(
"https://www.socialcrawl.dev/v1/amazon/product-search?query=wireless+earbuds&country=US",
{
headers: { "x-api-key": "YOUR_API_KEY" },
},
);
const data = await response.json();Parameters
| Parameter | Required | Description |
|---|---|---|
| query | Yes | Search keyword or phrase. |
| 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. Non-US marketplaces are best-effort; an occasional timeout is refunded. (US | GB | CA | DE | FR | IT | ES | JP | IN | MX | BR | AU | NL) |
| depth | No | Maximum number of products to return in ONE call (default 20, max 700). Use it when you would rather make a single large request than paginate: it selects a different, slower search backend whose latency grows with depth, and a timeout is auto-refunded. Leave it unset for the fast default page size, which is the better choice for keyword→ASIN resolution. |
| page | No | Page number, starting at 1. Prefer the universal cursor parameter. |
What does the Amazon Product Search 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-search",
"data": {
"items": [
{
"product": {
"id": "B0H73T3PD7",
"url": "https://www.amazon.com/dp/B0H73T3PD7",
"title": "Wireless Earbuds, Bluetooth 5.4 Ear Buds Bass Stereo, Headphones with Noise Cancelling Mic, LED Display in Ear Earphones Clear Calls, IP7 Waterproof Bluetooth Earbuds for Phone/Android/iPad, Black",
"description": null,
"seller": null,
"brand": null,
"price": {
"current": 19.99,
"original": null,
"currency": "USD"
},
"rating": {
"average": 4.9,
"count": 641
},
"image_urls": "https://m.media-amazon.com/images/I/61QGlXzWdKL._AC_UY218_.jpg",
"availability": null,
"reviews_count": null
}
},
{
"product": {
"id": "B0H5VN7MDL",
"url": "https://www.amazon.com/dp/B0H5VN7MDL",
"title": "HAOYUYAN Wireless Earbuds, Sports Bluetooth Headphones, LED Power Display Ear Buds with 80Hrs Playtime, Noise Canceling Headset, IPX7 Waterproof Earphones for Workout/Running",
"description": null,
"seller": null,
"brand": null,
"price": {
"current": 23.98,
"original": null,
"currency": "USD"
},
"rating": {
"average": 4.8,
"count": 290
},
"image_urls": "https://m.media-amazon.com/images/I/61DzAvRWJlL._AC_UY218_.jpg",
"availability": null,
"reviews_count": null
}
}
],
"total": null,
"dropped": 0
},
"credits_used": 1,
"credits_remaining": 9999,
"request_id": "req_example000000",
"cached": false,
"pagination": {
"next_cursor": null,
"has_more": false,
"page_size": 20
}
}Live sample illustrating the unified response shape. Field values reflect the record you query.
How does the Amazon Product Search 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 search Amazon products with an API?
What does the Amazon Product Search API return per product?
Which Amazon marketplaces does the search API support?
How many products can one search request return?
How much does the Amazon Product Search API cost?
Ask AI about SocialCrawl
Ready to scrape Amazon Product Search data?
Get your API key and start pulling Amazon data in under 60 seconds.
