VIZ.cx

VIZ RPC Reference

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

get_accounts

Returns full account objects for a list of account names.

Parameters

NameTypeReqDescription
account_namesstring[]Comma-separated account names

Returns

Array of Account objects with balance, vesting_shares, energy (0–10000), json_metadata, and more.

Example request

curl -X POST https://node.viz.cx \
  -H 'Content-Type: application/json' \
  -d '{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "get_accounts",
  "params": {
    "account_names": []
  }
}'

Try it

Target
Method
Parameters
account_namesstring[]*

Comma-separated account names

JSON-RPC request
{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "get_accounts",
  "params": {
    "account_names": []
  }
}
POST https://node.viz.cx