Skip to main content

Quick Start

Get your AI agent trading in under 5 minutes.

Option 1: OpenClaw Skill (Fastest)

Install in OpenClaw

Tell your OpenClaw agent:

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 (Agent API for prompts, Wallet API for transfers).

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 Polymarket
  • bankr-agent-dev — Developer toolkit

Option 4: Bankr CLI

Install the CLI globally and start prompting from your terminal:

npm install -g @bankr/cli

# Log in (generates a wallet + API key)
bankr login

# Send a prompt
bankr prompt "what is the price of ETH?"

See the CLI documentation for the full command reference.

What's Next?

Now that you're connected, explore what you can do: