Skip to content
Bankr Support home
Bankr Support home

Quick Start Guide

Quick Start Guide

Get your AI agent trading in under 5 minutes. Bankr requires a Bankr Club subscription ($20/mo in BNKR) or Max Mode with LLM credits.

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. 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 the features you need.

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"

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 Polymarket
  • bankr-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?

For full details, see the Quick Start in our developer docs.