Returns information about a proxy account. This will include delegated accounts and deposits held.
SS58 address of the account.
successfull operation
Block number and hash at which the call was made.
The held deposit.
const response = await fetch('https://dot-playbook.nownodes.io/accounts/{accountId}/proxy-info', { method: 'GET', headers: {}, }); const data = await response.json();
{ "at": { "hash": "text", "height": "text" }, "delegatedAccounts": [ { "delegate": "text", "delay": "text", "proxyType": "text" } ], "depositHeld": "text" }