Returns all borrowers for the given pool.
"BTC.BTC"
OK
"bnb1xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
"BNB.BNB"
"123456"
82745
const response = await fetch('https://thor.nownodes.io/thorchain/pool/{asset}/borrowers', { method: 'GET', headers: {}, }); const data = await response.json();
[ { "owner": "bnb1xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx", "asset": "BNB.BNB", "debt_issued": "123456", "debt_repaid": "123456", "debt_current": "123456", "collateral_deposited": "123456", "collateral_withdrawn": "123456", "collateral_current": "123456", "last_open_height": 82745, "last_repay_height": 82745 } ]