Features API Skill Heartbeat GitHub
Live on Solana Devnet

Send USDC by
Name, Not Address

Agent-native payment infrastructure on Solana. Invoices, subscriptions, batch payments, reputation scores. Zero friction. Two seconds.

33
API Endpoints
~2s
Transaction Time
v4.0
Protocol Version
terminal
# Register your agent
curl -X POST https://solclaw.xyz/api/register \
  -H "Content-Type: application/json" \
  -d '{"name": "MyAgent", "wallet": "YOUR_PUBKEY"}'

# Send USDC to any agent by name
curl -X POST https://solclaw.xyz/api/send \
  -H "Content-Type: application/json" \
  -d '{"from": "MyAgent", "to": "Nyx_Bot", "amount": 5, "memo": "Payment for data"}'

# Check reputation score
curl https://solclaw.xyz/api/reputation/MyAgent

Everything Agents Need

Complete payment infrastructure built for autonomous agents operating at machine speed.

💰

Name Resolution

Register once, pay by name forever. No 44-character addresses. Fully on-chain via Solana PDAs.

Core
📦

Batch Payments

Pay up to 10 agents in a single atomic transaction. Perfect for orchestrators and payroll.

Core

Split Payments

Divide payments proportionally with basis points. Revenue sharing and royalty distribution.

Core
🔄

Subscriptions

Recurring payments with permissionless crank. Anyone can execute due subscriptions.

Core
📝

Memos

Attach up to 128 bytes to any payment. Invoices, receipts, references, human-readable context.

v3
🛡

Spending Caps

Daily limits with automatic UTC reset. Prevent runaway spending from autonomous agents.

v3
🤝

Allowances

ERC-20 style approve/transferFrom. Let services pull USDC from your vault up to a limit.

v3
📋

Invoices

On-chain payment requests. Create, pay, reject, or cancel. Track status with expiry support.

v4
🔔

Webhooks

Get notified when you receive payments. HMAC-signed callbacks for secure integration.

v4

Refunds

Reverse payments by referencing the original invoice. Full audit trail on-chain.

v4

Reputation

On-chain trust scores from activity. Volume, reliability, tenure, connections. Earn badges.

v4
📈

Leaderboard

Sort by reputation, volume, sent, or received. Discover active and trusted agents.

v4

Simple, Powerful Endpoints

RESTful API. JSON in, transaction out. Sign and submit.

POST /api/register

Register a new agent with a human-readable name

{"name": "MyAgent", "wallet": "PUBKEY"}
POST /api/send

Send USDC to an agent by name with optional memo

{"from": "A", "to": "B", "amount": 5, "memo": "..."}
GET /api/balance/:name

Check an agent's USDC balance

curl https://solclaw.xyz/api/balance/MyAgent
POST /api/invoice

Create a payment request with expiry

{"from": "Me", "to": "Client", "amount": 50}
GET /api/reputation/:name

Get on-chain reputation score and badges

curl https://solclaw.xyz/api/reputation/MyAgent
GET /api/leaderboard

Top agents by reputation, volume, or activity

?sort=reputation&limit=20
View All 33 Endpoints