Last updated 1 year ago
validator_addr defines the validator address to query for.
A successful response.
pagination defines the pagination in the response.
const response = await fetch('/cosmos/staking/v1beta1/validators/{validator_addr}/unbonding_delegations', { method: 'GET', headers: {}, }); const data = await response.json();
{ "unbonding_responses": [ { "delegator_address": "text", "validator_address": "text", "entries": [ { "creation_height": "text", "completion_time": "2024-11-21T06:37:36.534Z", "initial_balance": "text", "balance": "text" } ] } ], "pagination": { "next_key": "Ynl0ZXM=", "total": "text" } }