VIZ RPC Reference
JSON-RPC 2.0 methods served by node.viz.cx. Endpoint: POST https://node.viz.cx
get_key_references
Finds accounts that use a given set of public keys.
Parameters
| Name | Type | Req | Description |
|---|---|---|---|
| keys | string[] | ✓ | Public key strings (VIZ prefix) |
Returns
Array of arrays — for each key, a list of account names that hold it.
Example request
curl -X POST https://node.viz.cx \
-H 'Content-Type: application/json' \
-d '{
"jsonrpc": "2.0",
"id": 1,
"method": "get_key_references",
"params": {
"keys": []
}
}'Try it
Target
Method
Parameters
keysstring[]*
Public key strings (VIZ prefix)
JSON-RPC request
{
"jsonrpc": "2.0",
"id": 1,
"method": "get_key_references",
"params": {
"keys": []
}
}POST https://node.viz.cx