Documentation

API Documentation

Everything you need to integrate APIClaw into your applications

Quick Start

1. Get your API key

Sign up for a free account and generate your API key from the Platform Console.

Go to API Keys
2. Make your first request
Terminal
curl -X POST https://api.apiclaw.io/openapi/v2/products/search \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"keyword": "wireless earbuds", "limit": 10}'
3. Parse the response
response.json
{
  "success": true,
  "data": [
    {
      "asin": "B09V3KXJPB",
      "title": "Wireless Earbuds...",
      "price": 29.99,
      "rating": 4.5,
      "reviews": 12500
    }
  ],
  "meta": { "total": 100, "page": 1 }
}

Ready to Build?

Start with 1,000 free API credits and full access to all endpoints.