Introduction
APIClaw provides real-time Amazon product data through a simple REST API. In this guide, you'll learn how to make your first API call and start building with structured e-commerce data.
Prerequisites
- An APIClaw account (sign up for free)
- An API key (create one in the API Console)
Your First API Call
Search for products with a simple POST request:
curl -X POST https://api.apiclaw.io/v2/products/search \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"keyword": "wireless earbuds", "pageSize": 5}'
The response includes structured product data:
{
"success": true,
"data": [
{
"asin": "B0D1XD1ZV3",
"title": "Wireless Earbuds, Bluetooth 5.3...",
"price": 29.99,
"monthlySalesFloor": 1250,
"rating": 4.5,
"ratingCount": 3821
}
]
}
Available Endpoints
| Endpoint | Description |
|---|---|
/v2/products/search |
Search products by keyword, category, and filters |
/v2/products/detail |
Get detailed info for a single product |
/v2/products/competitors |
Find competitor products |
/v2/markets/search |
Market-level category data |
/v2/reviews/analyze |
AI-powered review analysis |
Next Steps
- Explore the API Documentation for all available parameters
- Try the Web Console for interactive research
- Check out our use cases for agent integration patterns
Tip: Each API call costs 1 credit. New accounts get 1,000 free credits to start.
Happy building!
Top comments (0)