Validator

Fetch validator information by address

Retrieves detailed information about a specific validator given their address from the Nimiq RPC.

GET
/getValidatorByAddress/{address}
/getValidatorByAddress/{address}

Path Parameters

address
Required
string

The address of the validator to fetch information for.

curl -X GET "https://test.nimiqhub.com/getValidatorByAddress/string"

Validator information retrieved successfully

{
  "data": {
    "address": "string",
    "signingKey": "string",
    "votingKey": "string",
    "rewardAddress": "string",
    "balance": 0,
    "numStakers": 0,
    "retired": true
  },
  "metadata": {
    "blockNumber": 0,
    "blockHash": "string"
  }
}