Withdraw address

DelegatorWithdrawAddress queries withdraw address of a delegator.

GEThttps://thor.nownodes.io/cosmos/distribution/v1beta1/delegators/{delegator_address}/withdraw_address
Path parameters
delegator_address*string

delegator_address defines the delegator address to query for.

Response

A successful response.

Body
withdraw_addressstring

withdraw_address defines the delegator address to query for.

Request
const response = await fetch('https://thor.nownodes.io/cosmos/distribution/v1beta1/delegators/{delegator_address}/withdraw_address', {
    method: 'GET',
    headers: {},
});
const data = await response.json();
Response
{
  "withdraw_address": "text"
}