Solana Devnet · Banking for AI Agents

Give your agent a Solana wallet.
Let it transact autonomously.

ClawBank is custodial banking infrastructure for autonomous AI. Generate wallets for your agents, set server-enforced spending limits, and let them transact via a single REST API — no private keys ever leave our servers.

AES-256 encrypted keysAny agent framework0.5% fee, no subscription
agent.js
live
1// Your AI agent, 3 lines
2const res = await fetch(
3  'https://clawbank.co/api/agent/transact',
4  { method: 'POST',
5    headers: {
6      Authorization: `Bearer ${API_KEY}`
7    }, body: JSON.stringify({
8      to: '9xDm...abc', amount_sol: 0.1
9    })});
10
11// ✅ Transaction confirmed. Fee deducted.
Latest transaction
0.099 SOL
→ 9xDm...abc
confirmed
< 400ms
Avg. settlement
AES-256
Key encryption
0.5%
Platform fee only

Works with every major AI framework

Claude
ChatGPT
Gemini
LangChain
Cursor
CrewAI
n8n
Zapier
Make
Hugging Face
Claude
ChatGPT
Gemini
LangChain
Cursor
CrewAI
n8n
Zapier
Make
Hugging Face
How it works

From zero to autonomous transactions in 3 steps

No blockchain expertise required. No private keys to manage. Just a simple API that your AI agent can call from anywhere.

01

Create an Agent

Sign up and create an Agent profile in seconds. ClawBank instantly generates a brand-new Solana keypair — private key encrypted server-side, wallet address yours to share.

02

Fund the Wallet

Send SOL or USDC to the agent's wallet address from any Solana wallet. Your agent's balance appears in real-time via Solana RPC.

03

Transact Autonomously

Your AI agent calls our REST API with its API key to send payments, check balances, and review history — all within your configured spending limits.

Features

Everything your agent needs to bank on Solana

Production-grade infrastructure built specifically for the autonomous AI era.

Custodial Wallets

Auto-generated Solana wallets for every agent. Private keys encrypted with AES-256 and never exposed.

POST /api/agents

Autonomous Transactions

Agents transact in real-time using bearer API keys. No human approval needed within set limits.

POST /api/agent/transact

Spending Controls

Set per-transaction and daily SOL limits per agent. All limits enforced server-side before signing.

PATCH /api/agents/:id

Live Balance & History

Real-time balance via Solana RPC. Full transaction history with on-chain signatures and explorer links.

GET /api/agent/balance

API Key Auth

Long-lived bearer tokens for your agents. SHA-256 hashed in storage. Rotate at any time.

Authorization: Bearer

REST API First

Dead-simple JSON API. Works with any AI framework — LangChain, AutoGen, Claude, Cursor, and more.

application/json

Transaction Simulation

Every transaction is simulated before signing. Failed transactions are caught before fees are spent.

simulateTransaction

0.5% Platform Fee

Transparent fee model. 0.5% on every outgoing transaction, automatically split in the same tx.

fee_sol: 0.0005
Integration

Integrate in minutes

Works with any language or AI framework. Copy, paste, ship.

// ClawBank Agent SDK (plain fetch)
const CLAWBANK_API = "https://clawbank.co";
const API_KEY = process.env.CLAWBANK_API_KEY;

// Check balance
const { data: balance } = await fetch(`${CLAWBANK_API}/api/agent/balance`, {
  headers: { Authorization: `Bearer ${API_KEY}` }
}).then(r => r.json());

console.log(`Balance: ${balance.balance_sol} SOL`);

// Send payment
const { data: tx } = await fetch(`${CLAWBANK_API}/api/agent/transact`, {
  method: "POST",
  headers: {
    Authorization: `Bearer ${API_KEY}`,
    "Content-Type": "application/json",
  },
  body: JSON.stringify({
    to: "9xDmXCJ...recipient",
    amount_sol: 0.05,
    memo: "autonomous payment",
  }),
}).then(r => r.json());

console.log("Tx signature:", tx.signature);
Get started today

Ready to give your agent
a Solana wallet?

Join developers building the next generation of autonomous AI. Free to start. 0.5% fee only on successful transactions.

// no credit card required · solana devnet · aes-256 encrypted

ClawBank — Banking for AI Agents