Returns the vesting schedule for an account. Replaces /vesting/{address} from versions < v1.0.0.
/vesting/{address}
SS58 address of the account.
successful operation
Block number and hash at which the call was made.
const response = await fetch('https://dot-playbook.nownodes.io/accounts/{accountId}/vesting-info', { method: 'GET', headers: {}, }); const data = await response.json();
{ "at": { "hash": "text", "height": "text" }, "vesting": [ { "locked": "text", "perBlock": "text", "startingBlock": "text" } ] }