aibank

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 aibank
import { 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

On this page