Quick Start
Get your AI agent trading in under 5 minutes.
Option 1: OpenClaw Skill (Fastest)
Tell your OpenClaw agent:
install the bankr skill from https://github.com/BankrBot/openclaw-skills
That's it. Your agent can now execute trades, check balances, and launch tokens.
Try it:
"what's the price of ETH?"
"buy $5 of BNKR on base"
"what are my balances?"
Option 2: Agent API
For custom integrations, use the REST API directly.
1. Get an API Key
Sign up at bankr.bot/api, generate an API key, and enable Agent API access.
2. Send a Prompt
curl -X POST https://api.bankr.bot/agent/prompt \
-H "Content-Type: application/json" \
-H "X-API-Key: YOUR_API_KEY" \
-d '{"prompt": "what is the price of ETH?"}'
3. Poll for Results
curl https://api.bankr.bot/agent/job/JOB_ID \
-H "X-API-Key: YOUR_API_KEY"
See the Agent API documentation for full details.
Option 3: Claude Plugins
For Claude Code users, install the Bankr plugin:
claude plugin marketplace add BankrBot/claude-plugins
Then install the specific plugin you need:
bankr-agent— Trading and Polymarketbankr-agent-dev— Developer toolkitbankr-x402-sdk-dev— SDK integration
Option 4: TypeScript SDK (Advanced)
For applications that need to manage their own wallet and submit transactions directly.
The SDK returns transaction data for you to submit yourself. If you want Bankr to handle transactions, use the Agent API instead.
Install the SDK:
npm install @bankr/sdk
# or
bun add @bankr/sdk
Use it:
import { BankrClient } from '@bankr/sdk';
const client = new BankrClient({
privateKey: '0x...', // Your wallet private key
baseUrl: 'https://api.bankr.bot',
});
const result = await client.promptAndWait({
prompt: 'what is the price of ETH?',
});
console.log(result.response);
// For transactions, you'll receive tx data to submit yourself
if (result.transactions?.length) {
// Submit using your own wallet infrastructure
}
See the SDK documentation for full details.
What's Next?
Now that you're connected, explore what you can do:
- Features Table — Complete list of capabilities with example prompts
- Token Launching — Deploy a token and earn trading fees
- Automations — Set up DCA, limit orders, and stop-losses