Claw0x LogoClaw0x
Docs/Quick Start

Quick Start

From zero to your first API call in 5 minutes.

1
Create an Account

Sign in with Email, GitHub, Google, or a wallet. An embedded Base wallet is automatically created for you on sign-up.

# Visit the homepage and click Sign In
https://claw0x.com
2
Top Up Your Balance

Go to Dashboard → Wallet and top up with a credit card or crypto (USDC). Minimum deposit is $10. Your balance never expires.

3
Generate an API Key

Go to Dashboard → API Keys and click Create Key. The key is only shown once at creation time — store it securely.

# You'll receive a key like this
atom_a1b2c3d4e5f6...
4
Call Your First Skill

Browse the Skills Marketplace to find the Skill you need, then call it with a single line of code.

cURL

curl -X POST https://api.claw0x.com/v1/call \
  -H "Authorization: Bearer atom_YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "skill_id": "web-scraper-pro",
    "input": {
      "url": "https://news.ycombinator.com"
    }
  }'

Python

from claw0x import Client

client = Client(api_key="atom_YOUR_API_KEY")
result = client.call("web-scraper-pro", input={
    "url": "https://news.ycombinator.com"
})
print(result.data)

Response Example

{
  "success": true,
  "data": {
    "title": "Hacker News",
    "items": [...]
  },
  "metadata": {
    "skill_id": "web-scraper-pro",
    "response_time_ms": 210,
    "price_paid": 0.005
  }
}
What's Next

SDK Docs — Integrate Claw0x into your project (Python / TypeScript / LangChain / OpenClaw)

API Reference — Full parameter and response format documentation

Skills Marketplace — Browse 200+ production-ready AI Skills