Parameters
Object Name | Required | Type | Detail |
---|---|---|---|
DELEGATOR_ADDR | ✅ | String | The delegator address to query. |
pagination.key | ❌ | String | The value returned in PageResponse.next_key to begin querying the next page most efficiently. If provided, then pagination.offset is not allowed. |
pagination.offset | ❌ | Integer | A 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.limit | ❌ | Integer | The 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_total | ❌ | Boolean | If 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/unbonding_delegations
Result
All unbonding delegations of a given delegator address.
Example
Request
curl <your-rest-endpoint>/cosmos/staking/v1beta1/delegators/cosmos1vhqsuaxg52gvvzwyhqejvwfved5ywa3n6vl4ld/unbonding_delegations \
-X GET \
-H "accept: application/json"
Return
{
"unbonding_responses": [
{
"delegator_address": "cosmos1vhqsuaxg52gvvzwyhqejvwfved5ywa3n6vl4ld",
"validator_address": "cosmosvaloper1ey69r37gfxvxg62sh4r0ktpuc46pzjrm873ae8",
"entries": [
{
"creation_height": "9816373",
"completion_time": "2022-04-10T10:53:36.070158017Z",
"initial_balance": "69338891",
"balance": "69338891"
}
]
},
{
"delegator_address": "cosmos1vhqsuaxg52gvvzwyhqejvwfved5ywa3n6vl4ld",
"validator_address": "cosmosvaloper1uyccnks6gn6g62fqmahf8eafkedq6xq400rjxr",
"entries": [
{
"creation_height": "9876631",
"completion_time": "2022-04-15T14:53:09.488605475Z",
"initial_balance": "1000000000",
"balance": "1000000000"
}
]
},
{
"delegator_address": "cosmos1vhqsuaxg52gvvzwyhqejvwfved5ywa3n6vl4ld",
"validator_address": "cosmosvaloper1lzhlnpahvznwfv4jmay2tgaha5kmz5qxerarrl",
"entries": [
{
"creation_height": "9816381",
"completion_time": "2022-04-10T10:54:38.603248058Z",
"initial_balance": "1767999999",
"balance": "1767999999"
}
]
}
],
"pagination": {
"next_key": null,
"total": "3"
}
}