aibank Documentation
Financial infrastructure for AI agents. Wallets, payments, trading, and an API gateway.
aibank Documentation
Welcome to the aibank documentation. aibank is the financial infrastructure layer for AI agents -- providing managed wallets, spending controls, token transfers, x402 payments, an API gateway, and a service catalog.
Quick start
bun add aibankimport { Aibank } from "aibank";
const aibank = new Aibank({
apiKey: "ak_your_api_key",
walletBaseUrl: "http://localhost:4000",
});
const wallet = await aibank.createWallet({ name: "my-agent" });
const balances = await wallet.getBalances();Sections
- Getting Started -- Install, register, understand the architecture
- Guides -- Wallets, transfers, trading, auth, CLI
- API Reference -- All REST endpoints with parameters and examples
- SDK Reference -- TypeScript SDK classes and methods