Home

Returns address balances and counters.

POST
wss://bsc-blockbook.nownodes.io/wss/{apiKey}

Returns confirmed and unconfirmed balances, transaction counters and (on EVM chains) the account nonce for a single address. details, tokens, page, pageSize, from, to and contractFilter mirror the REST /api/v2/address parameters.

Body

application/json

Blockbook WebSocket request for getAccountInfo, sent as a text message over the WebSocket connection.

idstringrequired

Request identifier. Subscription notifications are delivered with the same id as the subscribe request.

methodstringrequired
paramsobjectrequired
Show child attributes
descriptorstringrequired

Address, XPUB or descriptor.

detailsstringbasictokenstokenBalancestxidstxslighttxs

Detail level.

tokensstringusednonzeroderived

Token inclusion mode.

pageinteger | null

1-based transaction page.

pageSizeinteger | null

Transactions per page.

frominteger | null

Start block height filter.

tointeger | null

End block height filter.

contractFilterstring

Token contract filter.

Parameters

apiKeystringrequiredpath

NOWNodes API key. Connect to wss://bsc.nownodes.io/wss/{apiKey}. The WebSocket handshake returns HTTP 403 when the key is missing or invalid.

Response

200OK

Response delivered over the WebSocket connection as {"id": ..., "data": ...}. Errors are returned inside data.error; see BlockbookError.

403Forbidden

Forbidden. The WebSocket handshake was rejected: the API key is missing or invalid (verified live: wrong and missing keys both return HTTP 403).