/cosmos/staking/v1beta1/validators/{validator_addr}

Validator queries validator info for given validator address.

Parameters:

validator_address - string, validator_address defines the validator address to query for.

Example:

// Request
curl -X GET -H 'Content-Type: application/json' https://froopyland.blockpi.network/lcd/v1/<your-api-key>/cosmos/staking/v1beta1/validators/dymvaloper1qvc6jej73armfs5fadn9lprx768f46d9scrydl

// Result
{
    "validator": {
        "commission": {
            "commission_rates": {
                "max_change_rate": "0.010000000000000000",
                "max_rate": "0.200000000000000000",
                "rate": "0.100000000000000000"
            },
            "update_time": "2023-08-22T14:00:00Z"
        },
        "consensus_pubkey": {
            "@type": "/cosmos.crypto.ed25519.PubKey",
            "key": "MgTFBDV0LZ8N1HxMNv/AfA2q3x90GPyl86QIHcjGVns="
        },
        "delegator_shares": "105572413269999000003996.000000000000000000",
        "description": {
            "details": "Polkachu is the trusted staking service provider for blockchain projects. 100% refund for downtime slash. Contact us at hello@polkachu.com",
            "identity": "0A6AF02D1557E5B4",
            "moniker": "polkachu.com",
            "security_contact": "hello@polkachu.com",
            "website": "https://polkachu.com"
        },
        "jailed": false,
        "min_self_delegation": "1",
        "operator_address": "dymvaloper1qvc6jej73armfs5fadn9lprx768f46d9scrydl",
        "status": "BOND_STATUS_BONDED",
        "tokens": "105572413269999000003996",
        "unbonding_height": "0",
        "unbonding_time": "1970-01-01T00:00:00Z"
    }
}
}

Last updated