VIZ.cx

VIZ RPC Reference

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

lookup_accounts

Searches accounts whose names start at or after lower_bound. Use for autocomplete.

Parameters

NameTypeReqDescription
lower_boundstringName prefix to start from
limitnumberMax results (≤1000)

Returns

Array of account name strings.

Example request

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

Try it

Target
Method
Parameters
lower_boundstring*

Name prefix to start from

limitnumber*

Max results (≤1000)

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