A collection of example projects demonstrating how to build applications on top of the Bankr API.
This repository provides ready-to-use examples showing different ways to integrate with Bankr APIs. Each example is a complete, working project that you can run locally or use as a starting point for your own applications.
The Agent API allows you to interact with your Bankr AI agent programmatically. These examples demonstrate various interfaces for chatting with your agent.
| Example | Description |
|---|---|
| CLI | Terminal-based chat interface using Ink (React for CLI). Send messages and receive responses directly from your terminal. |
| Voice | Voice-powered web interface with speech recognition and text-to-speech. Speak to your wallet and hear responses aloud. |
| Telegram Trader | Simple proof-of-concept bot that monitors Telegram groups and auto-executes trades via Bankr. Extend for your own use cases. |
- A Bankr account
- A Bankr API key with wallet access enabled (generate one at https://bankr.bot/api)
- Clone this repository
- Navigate to an example directory
- Follow the README instructions in that example
bankr-api-examples/
└── examples/
└── agent-api/ # Agent API examples
├── cli/ # Terminal chat interface
├── voice/ # Voice-powered web interface
└── telegram-trader/ # Telegram trading bot (PoC)
This repository is organized by API. To add a new example:
- Create a directory under the appropriate API folder (e.g.,
examples/agent-api/) - Include a README with setup instructions
- Ensure the example is self-contained with its own dependencies
MIT