VIZ.cx

VIZ RPC Reference

JSON-RPC 2.0 methods served by node.viz.cx. Endpoint: POST https://node.viz.cx

get_account_history

Returns paginated operation history for an account. from=-1 returns the most recent entries.

Parameters

NameTypeReqDescription
accountstringAccount name
fromnumberHistory index to start from (-1 = latest)
limitnumberNumber of entries to return (≤1000)

Returns

Array of [index, HistoryItem] tuples. Each HistoryItem has trx_id, block, op_in_trx, virtual_op, timestamp, and op (a [type, data] pair).

Example request

curl -X POST https://node.viz.cx \
  -H 'Content-Type: application/json' \
  -d '{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "get_account_history",
  "params": {
    "account": "",
    "from": 0,
    "limit": 0
  }
}'

Try it

Target
Method
Parameters
accountstring*

Account name

fromnumber*

History index to start from (-1 = latest)

limitnumber*

Number of entries to return (≤1000)

JSON-RPC request
{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "get_account_history",
  "params": {
    "account": "",
    "from": 0,
    "limit": 0
  }
}
POST https://node.viz.cx