Unbonding delegations
Path parameters
delegatorAddranyRequired
Bech32 AccAddress of Delegator
Responses
200
OK
application/json
400
Invalid delegator address
500
Internal Server Error
get
GET /staking/delegators/{delegatorAddr}/unbonding_delegations HTTP/1.1
Host: akt.nownodes.io
Accept: */*
[
{
"delegator_address": "text",
"validator_address": "text",
"initial_balance": "text",
"balance": "text",
"creation_height": 1,
"min_time": 1
}
]
Path parameters
delegatorAddranyRequired
Bech32 AccAddress of Delegator
Body
delegator_addressstringOptionalExample:
bech32 encoded address
cosmos1depk54cuajgkzea6zpgkq36tnjwdzv4afc3d27
validator_addressstringOptionalExample:
bech32 encoded address
cosmosvaloper16xyempempp92x9hyzz9wrgf94r6j9h5f2w4n2l
Responses
200
OK
application/json
400
Invalid delegator address or unbonding delegation request body
401
Key password is wrong
500
Internal Server Error
post
POST /staking/delegators/{delegatorAddr}/unbonding_delegations HTTP/1.1
Host: akt.nownodes.io
Content-Type: application/json
Accept: */*
Content-Length: 447
{
"base_req": {
"from": "cosmos1g9ahr6xhht5rmqven628nklxluzyv8z9jqjcmc",
"memo": "Sent via Cosmos Voyager 🚀",
"chain_id": "Cosmos-Hub",
"account_number": "0",
"sequence": "1",
"gas": "200000",
"gas_adjustment": "1.2",
"fees": [
{
"denom": "stake",
"amount": "50"
}
],
"simulate": false
},
"delegator_address": "cosmos1depk54cuajgkzea6zpgkq36tnjwdzv4afc3d27",
"validator_address": "cosmosvaloper16xyempempp92x9hyzz9wrgf94r6j9h5f2w4n2l",
"amount": {
"denom": "stake",
"amount": "50"
}
}
{
"msg": [
"text"
],
"fee": {
"gas": "text",
"amount": [
{
"denom": "stake",
"amount": "50"
}
]
},
"memo": "text",
"signature": {
"signature": "MEUCIQD02fsDPra8MtbRsyB1w7bqTM55Wu138zQbFcWx4+CFyAIge5WNPfKIuvzBZ69MyqHsqD8S1IwiEp+iUb6VSdtlpgY=",
"pub_key": {
"type": "tendermint/PubKeySecp256k1",
"value": "Avz04VhtKJh8ACCVzlI8aTosGy0ikFXKIVHQ3jKMrosH"
},
"account_number": "0",
"sequence": "0"
}
}
Path parameters
delegatorAddranyRequired
Bech32 AccAddress of Delegator
validatorAddranyRequired
Bech32 OperatorAddress of validator
Responses
200
OK
application/json
400
Invalid delegator address or validator address
500
Internal Server Error
get
GET /staking/delegators/{delegatorAddr}/unbonding_delegations/{validatorAddr} HTTP/1.1
Host: akt.nownodes.io
Accept: */*
{
"delegator_address": "text",
"validator_address": "text",
"entries": [
{
"initial_balance": "text",
"balance": "text",
"creation_height": "text",
"min_time": "text"
}
]
}