v1
latestOpenAPI 3.0.32026-07-173986194.3 KBReturns a list of debonding delegations to an account.
get/consensus/accounts/{address}/debonding_delegations_to
Path parameters
addressstring required
An Oasis-style (bech32) address.
Example:oasis1qpg2xuz46g53737343r20yxeddhlvc2ldqsjh70p
The staking address of the that is being delegated to.
Query parameters
limitinteger
The maximum numbers of items to return.
offsetinteger
The number of items to skip before starting to collect the result set.
Response
A JSON object containing a list of debonding delegations.
Example response
{
"total_count": 412,
"is_total_count_clipped": true,
"debonding_delegations": [
{
"amount": "1234567890123456789012",
"shares": "1234567890123456789012",
"validator": "oasis1qpg2xuz46g53737343r20yxeddhlvc2ldqsjh70p",
"delegator": "oasis1qprtzrg97jk0wxnqkhxwyzy5qys47r7alvfl3fcg"
}
]
}