Saver

Returns the saver position given then savers pool and address.

GEThttps://thor.nownodes.io/thorchain/pool/{asset}/saver/{address}
Path parameters
asset*string
Example: "BTC.BTC"
address*string
Example: "thor1zupk5lmc84r2dh738a9g3zscavannjy3nzplwt"
Query parameters
Response

OK

Body
asset*string
Example: "BNB.BNB"
asset_address*string
Example: "bnb1xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
last_add_heightinteger (int64)
Example: 82745
last_withdraw_heightinteger (int64)
Example: 82745
units*string
Example: "0"
asset_deposit_value*string
Example: "0"
asset_redeem_value*string
Example: "0"
growth_pct*string
Example: "0.02"
Request
const response = await fetch('https://thor.nownodes.io/thorchain/pool/{asset}/saver/{address}', {
    method: 'GET',
    headers: {},
});
const data = await response.json();
Response
{
  "asset": "BNB.BNB",
  "asset_address": "bnb1xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
  "last_add_height": 82745,
  "last_withdraw_height": 82745,
  "units": "0",
  "asset_deposit_value": "0",
  "asset_redeem_value": "0",
  "growth_pct": "0.02"
}