The Bankable API lets you move value in real time. Create settlements, manage stablecoin treasury and embed institutional wallets — over one REST interface, running 24/7/365.
Your account is live. Sandbox and production keys are already provisioned in your dashboard — no waiting on approval. Start in the sandbox, then flip one variable to go live.
BASE URL
productionhttps://api.trybankable.xyz/v1
sandboxhttps://sandbox.trybankable.xyz/v1
Quickstart
Make your first authenticated call in under a minute. Grab your sk_test key from the dashboard and ping the API.
Bankable uses bearer tokens. Send your secret key in the Authorization header on every request. All traffic must be over HTTPS. Never expose a sk_live key in client-side code.
HeaderCopy
Authorization: Bearer sk_live_51H8xQ...c0dE
Sandbox
The sandbox mirrors production exactly — same endpoints, same payloads — but settles simulated stablecoin with no real funds. It's already enabled on your account.
Sandbox base URL
https://sandbox.trybankable.xyz/v1
Test key
sk_test_51H8xQ...t3sT
Pre-seeded test counterparties are ready to receive settlements. When you're ready to go live, swap the base URL to production and use your sk_live key — nothing else changes.
Make a payment
Create a settlement to move stablecoin to a counterparty. Settlement is instant and final — the response returns with a settled status.
Subscribe to events to stay in sync. Bankable signs every delivery with the X-Bankable-Signature header — verify it against your webhook secret before trusting a payload.