API Reference
Balances & Transactions
Get balances
Live on-chain balances for the master wallet, read from the network.
GET
/v1/wallets/:id/balancesResponse
{
"data": [
{ "asset_type": "native", "balance": "10000.0000000" }
]
}List transactions
Recorded deposits and withdrawals for the wallet, most recent first. Amounts are integer amount_stroops (1 XLM = 10,000,000 stroops).
GET
/v1/wallets/:id/transactionsResponse
{
"data": [
{
"id": "924c…",
"direction": "deposit",
"asset_code": "native",
"amount_stroops": 50000000,
"source_account": "GA…",
"destination_account": "MA7…",
"stellar_tx_hash": "7f18…",
"status": "confirmed",
"created_at": "2026-06-12T10:00:00Z"
}
]
}Get a wallet
GET
/v1/wallets/:idResponse
{
"data": {
"id": "52775…",
"network": "testnet",
"address": "GBYK…",
"label": "Acme treasury",
"description": "primary treasury"
}
}