WS /ws/account/tx/{account}
WS

wss://api.xrpl.to/ws/account/tx/{account}

Raw account transaction stream (same shape as GET /account/tx)

AuthNone — works without a key

Request

WSwss://api.xrpl.to/ws/account/tx/rJqiMb94hyz41SBTNr2AyPNW8AzELa8nE
Path parameterValueDescription
accountAn XRPL account, its r-address
QueryValueDescription
historyint 0-50 (default: 0)
wscat -c 'wss://api.xrpl.to/ws/account/tx/rJqiMb94hyz41SBTNr2AyPNW8AzELa8nE'
A stream: connect with the code on the right, or wscat.

Response

Messages you receiveas documented
{ type: "subscribed", account }; { e: "history", txs[] } if history > 0; then live { ...event, tx } per transaction

What it does

Raw account transaction stream (same shape as GET /account/tx)

OpenAPI