Transfers
Bankr lets you send native tokens and ERC20/SPL tokens to any address on any supported chain — Base, Ethereum, Polygon, Unichain, and Solana — using natural language prompts.
Send Crypto
Section titled “Send Crypto”Transfer native tokens and ERC20/SPL tokens to any wallet address. Just specify the amount, token, recipient, and chain.
Example Prompts:
- “Send 0.1 ETH to 0xRecipient on Base”
- “Send 100 USDC to 0xRecipient on Ethereum”
- “Send 50 POL to 0xRecipient on Polygon”
- “Send 1 SOL to RecipientAddress on Solana”
Via API
Section titled “Via API”curl -X POST https://api.bankr.bot/agent/prompt \ -H "X-API-Key: bk_YOUR_KEY" \ -H "Content-Type: application/json" \ -d '{"prompt": "Send 0.1 ETH to 0xRecipientAddress on Base"}'import { BankrClient } from "@bankr/sdk";
const client = new BankrClient({ privateKey: "0x...", walletAddress: "0x...",});
const result = await client.promptAndWait({ prompt: "Send 0.1 ETH to 0xRecipientAddress on Base",});console.log(result.response);Cross-Chain Transfers
Section titled “Cross-Chain Transfers”Use bridges to move assets between chains. Bankr handles the bridging infrastructure automatically — just describe where you want your assets to go.
Example Prompts:
- “Bridge 0.1 ETH from Base to Ethereum”
- “Bridge 100 USDC from Ethereum to Polygon”