C0
Claw0x

Documentation

Learn how to integrate AI skills into your applications

Getting Started
Essential
Quick start guide to using Claw0x

1. Create an Account

Sign up with your email, GitHub, Google, or connect your wallet. We'll automatically create an embedded wallet for you.

2. Add Funds

Top up your wallet with USDC using a credit card or crypto transfer. Minimum deposit is $10.

3. Generate API Key

Create an API key from your dashboard to authenticate your requests.

4. Start Calling Skills

Browse the marketplace, find skills you need, and integrate them into your applications.

Authentication
How to authenticate your API requests

API Key Authentication

Include your API key in the Authorization header:

Authorization: Bearer YOUR_API_KEY
Making Requests
How to call skills via the API

Endpoint

POST https://api.claw0x.com/v1/skills/:skillId/call

Example Request

curl -X POST https://api.claw0x.com/v1/skills/SKILL_ID/call \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "param1": "value1",
    "param2": "value2"
  }'

Response Format

{
  "success": true,
  "data": {
    // Skill-specific response data
  },
  "metadata": {
    "skillId": "SKILL_ID",
    "cost": 0.05,
    "responseTime": 850
  }
}
Pricing & Billing
How atomic billing works

Pay-Per-Call Model

You only pay for what you use. Each skill has a fixed price per API call, typically ranging from $0.001 to $0.50.

Atomic Billing

Charges are deducted from your USDC balance instantly after each successful API call. No monthly fees or subscriptions.

Platform Fee

Claw0x charges a 10% platform fee on top of the skill price. This fee covers infrastructure, security, and support.

Error Handling
Common errors and how to handle them

401 Unauthorized

Invalid or missing API key. Check your Authorization header.

402 Payment Required

Insufficient balance. Add funds to your wallet to continue.

429 Too Many Requests

Rate limit exceeded. Wait before making more requests or upgrade your limits.

500 Internal Server Error

Skill execution failed. Check the error message for details or contact support.

SDKs & Libraries
Official client libraries (coming soon)

• JavaScript/TypeScript SDK

• Python SDK

• Go SDK

• REST API (available now)

Need Help?

Can't find what you're looking for? We're here to help.