VIZ RPC Reference
JSON-RPC 2.0 methods served by node.viz.cx. Endpoint: POST https://node.viz.cx
lookup_account_names
Like get_accounts but returns null for accounts that do not exist rather than omitting them.
Parameters
| Name | Type | Req | Description |
|---|---|---|---|
| account_names | string[] | ✓ | Comma-separated account names |
Returns
Array of Account objects or null values (null when account not found).
Example request
curl -X POST https://node.viz.cx \
-H 'Content-Type: application/json' \
-d '{
"jsonrpc": "2.0",
"id": 1,
"method": "lookup_account_names",
"params": {
"account_names": []
}
}'Try it
Target
Method
Parameters
account_namesstring[]*
Comma-separated account names
JSON-RPC request
{
"jsonrpc": "2.0",
"id": 1,
"method": "lookup_account_names",
"params": {
"account_names": []
}
}POST https://node.viz.cx