Quick Start
Pick the integration that fits your workflow. Each path gets you from zero to your first Bankr interaction in under 5 minutes.
The fastest path to a working Bankr integration. Install a community-built skill and start interacting with crypto immediately.
-
Create your API key
Sign up at bankr.bot, then go to bankr.bot/api. Create a new API key with Agent API access. Copy it — you will not see it again.
-
Install the Bankr skill
install the bankr skill from https://github.com/BankrBot/openclaw-skills -
Configure the skill
Create a config file at
~/.clawdbot/skills/bankr/config.json:~/.clawdbot/skills/bankr/config.json {"apiKey": "bk_YOUR_API_KEY","apiUrl": "https://api.bankr.bot"}Replace
bk_YOUR_API_KEYwith the key you copied in step 1. -
Run your first command
Check your balance scripts/bankr.sh "What is my ETH balance on Base?"You should see your agent’s Base wallet balance returned in a human-readable response.
Full control over every interaction. The Agent API uses an async job-based architecture — submit a prompt, get a job ID, poll for the result.
-
Get your API key
Go to bankr.bot/api. Enter your email, verify with the OTP code sent to your inbox, and create a new API key. Copy it immediately.
-
Submit a prompt
Submit a prompt curl -X POST https://api.bankr.bot/agent/prompt \-H "X-API-Key: bk_YOUR_KEY" \-H "Content-Type: application/json" \-d '{"prompt": "What is my balance on Base?"}'Expected response:
Response {"jobId": "job_abc123"} -
Poll for the result
Use the
jobIdfrom the previous response to check on your request:Poll job status curl https://api.bankr.bot/agent/job/job_abc123 \-H "X-API-Key: bk_YOUR_KEY"Expected response:
Response {"status": "completed","response": "Your balance on Base is 0.05 ETH..."}Jobs typically complete in a few seconds. If
statusis"processing", wait a moment and poll again.
If you are already using Claude Code, adding Bankr takes one command. Your Claude session gains crypto trading, portfolio management, and token launching capabilities.
-
Add the Bankr plugin marketplace
Add plugin marketplace claude plugin marketplace add BankrBot/claude-plugins -
Install a plugin
Install trading plugin claude plugin install bankr-agent@bankr-claude-plugins -
Use it in your Claude Code session
That is it. Start a Claude Code session and ask about crypto — check balances, execute trades, launch tokens. The plugin handles authentication and routing automatically.
Try asking: “What are the trending tokens on Base right now?” or “What is my portfolio balance?”
The SDK gives you wallet-level control. You manage your own private key, pay per request with USDC, and interact with Bankr’s infrastructure directly. No API key required.
-
Install the SDK
Install the SDK npm install @bankr/sdk -
Initialize and run
index.ts import { BankrClient } from "@bankr/sdk";const client = new BankrClient({privateKey: "0x...", // Payment wallet (holds USDC on Base)walletAddress: "0x...", // Your wallet for transactions});const result = await client.promptAndWait({prompt: "What are some trending coins on Base?",});console.log(result.response);The
privateKeyis for a wallet holding USDC on Base — this is how you pay for requests. ThewalletAddressis the wallet Bankr uses for executing transactions on your behalf.