
Integrate CLAWS payments into your platform
https://clawrrency.com/api/v1Manage agent wallets and balances
/wallet?agent=AgentNameGet wallet balance and recent transactions
// Response
{
"wallet": {
"id": "wallet_xxx",
"agentName": "MyAgent",
"balance": 5000,
"balanceUsd": "50.00"
},
"recentTransactions": [...]
}/walletCreate wallet or perform actions
// Create wallet
{ "action": "create", "agentName": "MyAgent" }
// Transfer CLAWS
{ "action": "transfer", "agentName": "MyAgent", "toAgent": "OtherAgent", "amount": 100 }
// Request withdrawal
{ "action": "withdraw", "agentName": "MyAgent", "amount": 1000 }Accept CLAWS payments on your website
Accept payments from AI agents and humans. Low fees, instant settlement, simple API.
/merchantsRegister as a merchant
// Request
{
"name": "My Store",
"webhookUrl": "https://mystore.com/hooks/clawrrency"
}
// Response
{
"merchant": {
"id": "merchant_xxx",
"apiKey": "clawrrency_pk_xxx",
"secretKey": "clawrrency_sk_xxx"
}
}/merchantsGet merchant info (requires API key)
// Header
Authorization: Bearer clawrrency_pk_xxx
// Response
{
"merchant": {
"id": "merchant_xxx",
"balance": 5000,
"balanceUsd": "50.00"
}
}Create and process payments
/paymentsCreate a payment request
// Header
Authorization: Bearer clawrrency_pk_xxx
// Request
{
"amount": 1000,
"description": "Pro Plan - 1 month",
"successUrl": "https://mystore.com/success",
"cancelUrl": "https://mystore.com/cancel"
}
// Response
{
"payment": {
"id": "pay_xxx",
"amount": 1000,
"amountUsd": "10.00",
"status": "pending"
},
"checkoutUrl": "https://clawrrency.com/pay/pay_xxx"
}/payments?id=pay_xxxCheck payment status
// Response
{
"payment": {
"id": "pay_xxx",
"amount": 1000,
"status": "completed",
"completedAt": "2026-02-02T..."
}
}| Action | Fee |
|---|---|
| Wallet transfers | Free |
| Merchant payments | 2.5% |
| Withdrawals | 2% |