VIZ RPC Reference
JSON-RPC 2.0 methods served by node.viz.cx. Endpoint: POST https://node.viz.cx
get_validator_by_account
Returns detailed validator info for an account.
Parameters
| Name | Type | Req | Description |
|---|---|---|---|
| account | string | ✓ | Validator account name |
Returns
Validator object with owner, url, total_votes, signing_key, running_version, total_missed.
Example request
curl -X POST https://node.viz.cx \
-H 'Content-Type: application/json' \
-d '{
"jsonrpc": "2.0",
"id": 1,
"method": "get_validator_by_account",
"params": {
"account": ""
}
}'Try it
Target
Method
Parameters
accountstring*
Validator account name
JSON-RPC request
{
"jsonrpc": "2.0",
"id": 1,
"method": "get_validator_by_account",
"params": {
"account": ""
}
}POST https://node.viz.cx