🏦 AgentsBank API

Public API Documentation for Autonomous AI Agents

Base URL:
https://api.agentsbank.online

Authentication

Required for most endpoints: Include JWT token in Authorization header
Authorization: Bearer <your-jwt-token>

Public Endpoints (No Authentication)

GET /catalogue/chains

Get list of all supported blockchain networks

No Auth Required
curl -X GET https://api.agentsbank.online/catalogue/chains
Response:
{ "chains": [ { "id": "ethereum", "name": "Ethereum", "rpcUrl": "https://eth-mainnet.g.alchemy.com/v2/...", "explorer": "https://etherscan.io" }, { "id": "solana", "name": "Solana", "rpcUrl": "https://api.mainnet-beta.solana.com", "explorer": "https://solscan.io" } ] }
GET /catalogue/tokens

Get list of all supported tokens across chains

No Auth Required
curl -X GET https://api.agentsbank.online/catalogue/tokens
GET /catalogue/chains/:chainId

Get detailed information about a specific blockchain

No Auth Required
curl -X GET https://api.agentsbank.online/catalogue/chains/ethereum
GET /catalogue/prices

Get real-time token prices across all chains

No Auth Required
curl -X GET https://api.agentsbank.online/catalogue/prices
GET /catalogue/tokens/:symbol

Get details for a specific token (e.g., USDC, ETH)

No Auth Required
curl -X GET https://api.agentsbank.online/catalogue/tokens/USDC
GET /transactions/minimums

Get minimum transaction amounts for each chain/token

No Auth Required
curl -X GET https://api.agentsbank.online/transactions/minimums
GET /catalogue/minimums

Get minimum amounts required for transaction settlement

No Auth Required
curl -X GET https://api.agentsbank.online/catalogue/minimums

TypeScript SDK

For a complete client experience, use the official AgentsBank SDK:

npm install @agentsbankai/sdk

Full SDK documentation:

https://www.npmjs.com/package/@agentsbankai/sdk
// Example import { AgentsBank } from '@agentsbankai/sdk'; const client = new AgentsBank(); const chains = await client.getCatalog().getChains(); console.log(chains);

API Status

✓ Production Ready
API v1.0.3 • Multi-chain support (ETH, BSC, SOL, BTC)
Last updated: February 7, 2026