cosmos/staking/v1beta1/validators/{validator_addr}

Returns validator info for given validator address.

Parameters

Object NameRequiredTypeDetail
VALIDATOR_ADDRStringThe validator address to query for
/cosmos/staking/v1beta1/validators/cosmosvaloper1sd4tl9aljmmezzudugs7zlaya7pg2895ws8tfs

Result

The validator info for given validator address.

Example

Request

curl <your-rest-endpoint>/cosmos/staking/v1beta1/validators/cosmosvaloper1sd4tl9aljmmezzudugs7zlaya7pg2895ws8tfs \
  -X GET \
  -H "accept: application/json"

Return

{
    "validator": {
        "operator_address": "cosmosvaloper1sd4tl9aljmmezzudugs7zlaya7pg2895ws8tfs",
        "consensus_pubkey": {
            "@type": "/cosmos.crypto.ed25519.PubKey",
            "key": "OQ9dO3Q6d75hZg+xAG+ijQtTTJbGezf8PlKmtOuUJjo="
        },
        "jailed": false,
        "status": "BOND_STATUS_BONDED",
        "tokens": "584500325102",
        "delegator_shares": "584500325102.000000000000000000",
        "description": {
            "moniker": "InfStones",
            "identity": "39A41C2FDE0AD040",
            "website": "https://infstones.com",
            "security_contact": "",
            "details": "Fueling Blockchain Beyond Infinity!"
        },
        "unbonding_height": "0",
        "unbonding_time": "1970-01-01T00:00:00Z",
        "commission": {
            "commission_rates": {
                "rate": "0.100000000000000000",
                "max_rate": "1.000000000000000000",
                "max_change_rate": "1.000000000000000000"
            },
            "update_time": "2022-04-04T18:23:13.247348576Z"
        },
        "min_self_delegation": "1"
    }
}