cosmos/staking/v1beta1/delegators/{delegator_addr}/validators

Returns all validators info for given delegator address.

Parameters

Object NameRequiredTypeDetail
DELEGATOR_ADDRStringThe delegator address to query.
pagination.keyStringThe value returned in PageResponse.next_key to begin querying the next page most efficiently. If provided, then pagination.offset is not allowed.
pagination.offsetIntegerA numeric offset that can be used when pagination.key is unavailable. It is less efficient than pagination.key. If provided, then pagination.key is not allowed.
pagination.limitIntegerThe total number of results to be returned in the result page. If left empty it will default to a value to be set by each app.
pagination.count_totalBooleanIf set to true, the result will include a count of the total number of items available for pagination. count_total is only respected when offset is used. It is ignored when key is set.
/cosmos/staking/v1beta1/delegators/cosmos1vhqsuaxg52gvvzwyhqejvwfved5ywa3n6vl4ld/validators

Result

All validators info for given delegator address.

Example

Request

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

Return

{
    "validators": [
        {
            "operator_address": "cosmosvaloper1ey69r37gfxvxg62sh4r0ktpuc46pzjrm873ae8",
            "consensus_pubkey": {
                "@type": "/cosmos.crypto.ed25519.PubKey",
                "key": "Roh99RlsnDKHUFYUcQVHk2S84NeZfZdpc+CBb6NREhM="
            },
            "jailed": false,
            "status": "BOND_STATUS_BONDED",
            "tokens": "5465152874588",
            "delegator_shares": "5466246057640.657187643162115714",
            "description": {
                "moniker": "Sikka",
                "identity": "5B5AB9D8FBBCEDC6",
                "website": "sikka.tech",
                "security_contact": "",
                "details": "Sunny Aggarwal (@sunnya97) and Dev Ojha (@ValarDragon)"
            },
            "unbonding_height": "7893737",
            "unbonding_time": "2021-10-25T23:53:04.980335653Z",
            "commission": {
                "commission_rates": {
                    "rate": "0.030000000000000000",
                    "max_rate": "1.000000000000000000",
                    "max_change_rate": "1.000000000000000000"
                },
                "update_time": "2019-11-01T04:08:08.548659287Z"
            },
            "min_self_delegation": "1"
        },
        {
            "operator_address": "cosmosvaloper1e4vye322gkjx8n85jgcclnc7nvdvu82axnr5ll",
            "consensus_pubkey": {
                "@type": "/cosmos.crypto.ed25519.PubKey",
                "key": "P5bVXtQROUYluem7UhCW4Xg/SvFijRlSmq6daONPk7M="
            },
            "jailed": false,
            "status": "BOND_STATUS_BONDED",
            "tokens": "216180795981",
            "delegator_shares": "216180795981.000000000000000000",
            "description": {
                "moniker": "Binary Holdings",
                "identity": "3EB2AEED134D7138",
                "website": "",
                "security_contact": "",
                "details": ""
            },
            "unbonding_height": "0",
            "unbonding_time": "1970-01-01T00:00:00Z",
            "commission": {
                "commission_rates": {
                    "rate": "0.030000000000000000",
                    "max_rate": "0.200000000000000000",
                    "max_change_rate": "0.040000000000000000"
                },
                "update_time": "2022-03-20T17:14:52.965039395Z"
            },
            "min_self_delegation": "1000000"
        },
        {
            "operator_address": "cosmosvaloper1ma02nlc7lchu7caufyrrqt4r6v2mpsj90y9wzd",
            "consensus_pubkey": {
                "@type": "/cosmos.crypto.ed25519.PubKey",
                "key": "Mvh+7UDaXgmj4Fst0ZUdx++MJmoq4B9M6mdgNc8H2pM="
            },
            "jailed": false,
            "status": "BOND_STATUS_BONDED",
            "tokens": "2166795925755",
            "delegator_shares": "2167012625011.331795796872242085",
            "description": {
                "moniker": "hashtower",
                "identity": "0BBBAE1FD11AEBAF",
                "website": "http://hashtower.com",
                "security_contact": "",
                "details": "Hashtower Actwo COSMOS Validator"
            },
            "unbonding_height": "6618366",
            "unbonding_time": "2021-07-08T18:41:23.182372504Z",
            "commission": {
                "commission_rates": {
                    "rate": "0.030000000000000000",
                    "max_rate": "1.000000000000000000",
                    "max_change_rate": "0.200000000000000000"
                },
                "update_time": "2019-07-16T08:46:06.560077744Z"
            },
            "min_self_delegation": "1"
        },
        {
            "operator_address": "cosmosvaloper1uyccnks6gn6g62fqmahf8eafkedq6xq400rjxr",
            "consensus_pubkey": {
                "@type": "/cosmos.crypto.ed25519.PubKey",
                "key": "UC18odnZ5+utHc8lD0L/gxqf5xD4sBDTdFuVB8+du5E="
            },
            "jailed": true,
            "status": "BOND_STATUS_UNBONDED",
            "tokens": "3936831223",
            "delegator_shares": "3937224904.555647079967468180",
            "description": {
                "moniker": "Inactive Validator",
                "identity": "",
                "website": "",
                "security_contact": "",
                "details": "Please undelegate!"
            },
            "unbonding_height": "11961836",
            "unbonding_time": "2022-09-28T13:48:50.179368529Z",
            "commission": {
                "commission_rates": {
                    "rate": "0.050000000000000000",
                    "max_rate": "1.000000000000000000",
                    "max_change_rate": "1.000000000000000000"
                },
                "update_time": "2022-05-02T23:03:33.296295613Z"
            },
            "min_self_delegation": "1"
        }
    ],
    "pagination": {
        "next_key": null,
        "total": "4"
    }
}