DEV Community

Kerrigan K
Kerrigan K

Posted on • Originally published at apiclaw.io

Getting Started with APIClaw API

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

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}'
Enter fullscreen mode Exit fullscreen mode

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
}
]
}
Enter fullscreen mode Exit fullscreen mode




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

Tip: Each API call costs 1 credit. New accounts get 1,000 free credits to start.

Happy building!

Top comments (0)