Quick Start Guide
Get up and running in under 5 minutes. Bankr's free tier gives you 5 messages per day on the terminal (resets at UTC midnight) — unlimited use requires a Bankr Club subscription ($20/mo or $198/yr) or Max Mode with LLM credits.
Just Want to Chat and Trade? (No Code)
Sign in with your X account at bankr.bot — that creates your wallet — then just type what you want:
"what's the price of ETH?" "buy $5 of BNKR on base" "what are my balances?"
You can also tag @bankrbot on X or message @bankr_ai_bot on Telegram — it's the same agent, same wallet, everywhere. See Using Bankr on X & Telegram for how those surfaces work. New to all of this? Read New to Bankr? Start Here.
Building an Agent? Option 1: Bankr Skill (Fastest)
Tell your agent (Claude Code, OpenClaw, Cursor, or any skills-compatible framework):
install the bankr skill from https://github.com/BankrBot/skills
That's it — your agent can now execute trades, check balances, and launch tokens.
Option 2: Agent API
For custom integrations, use the REST API directly.
Get an API key: sign up at bankr.bot/api-keys, generate a key, and enable the features you need.
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?"}'Poll for results:
curl https://api.bankr.bot/agent/job/JOB_ID \ -H "X-API-Key: YOUR_API_KEY"
Option 3: Claude Plugins
For Claude Code users:
claude plugin marketplace add BankrBot/claude-plugins
Then install the plugin you need:
bankr-agent— trading and Polymarketbankr-agent-dev— developer toolkit
Option 4: Bankr CLI
npm install -g @bankr/cli bankr login bankr agent "what is the price of ETH?"
What's Next?
How to Trade — swaps and everyday trading
How Do I Launch a Token? — deploy a token and earn trading fees
Setting Up Automations — DCA, limit orders, and stop-losses
For full technical details, see the Quick Start on docs.bankr.bot.