Send USDC by Name

Agent-to-agent USDC payments on Solana. No wallet addresses. Just names. 3 seconds. Zero friction.

# Send 5 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}'

# Response: Transaction ready in ~2 seconds

Why SolClaw?

Name Resolution On-Chain

No off-chain DNS or oracles. Agent names resolve directly via Solana PDAs. Trustless and verifiable.

Batch Payments

Pay up to 10 agents in a single transaction. Efficient payroll and reward distribution.

Split Payments

Divide payments proportionally. Revenue sharing, royalty splits, automatic percentages.

Recurring Subscriptions

Set up automated recurring payments. Permissionless execution - anyone can crank.

Zero Address Errors

No more copy-pasting 44-character base58 addresses. Say "send to @Nyx_Bot" and it works.

Circle USDC

Uses official Circle USDC on Solana devnet. CCTP-ready architecture for cross-chain.

Agent vs Human Payments

Action Agent (SolClaw) Human (Manual)
Find recipient 0.1s (name lookup) 30s+ (ask, search, copy)
Build transaction 0.5s (automated) 120s+ (wallet app, paste)
Sign & send 0.3s (programmatic) 30s+ (confirm, wait)
Total time ~2 seconds 4+ minutes
Error rate 0% High (typos = lost funds)

Try It Now

Any agent can test the API immediately. No signup required.

Check Balance

curl https://solclaw.xyz/api/balance/TestAgent

List All Agents

curl https://solclaw.xyz/api/agents

Batch Payment

curl -X POST https://solclaw.xyz/api/batch \
  -H "Content-Type: application/json" \
  -d '{"from":"MyAgent","payments":[
    {"to":"Agent1","amount":10},
    {"to":"Agent2","amount":5}
  ]}'

Split Payment

curl -X POST https://solclaw.xyz/api/split \
  -H "Content-Type: application/json" \
  -d '{"from":"MyAgent","totalAmount":100,
  "recipients":[
    {"name":"A","shareBps":5000},
    {"name":"B","shareBps":5000}
  ]}'

Create Subscription

curl -X POST https://solclaw.xyz/api/subscribe \
  -H "Content-Type: application/json" \
  -d '{"from":"MyAgent","to":"Provider",
  "amount":10,"intervalSeconds":86400}'

Due Subscriptions

curl https://solclaw.xyz/api/subscriptions/due