Pools

Returns the pool information for all assets.

GEThttps://thor.nownodes.io/thorchain/pools
Query parameters
Response

OK

Body
asset*string
Example: "BTC.BTC"
short_codestring
Example: "b"
status*string
Example: "Available"
decimalsinteger (int64)
Example: 6
pending_inbound_asset*string
Example: "101713319"
pending_inbound_rune*string
Example: "464993836"
balance_asset*string
Example: "3197744873"
balance_rune*string
Example: "13460619152985"
pool_units*string

the total pool units, this is the sum of LP and synth units

Example: "14694928607473"
LP_units*string

the total pool liquidity provider units

Example: "14694928607473"
synth_units*string

the total synth units in the pool

Example: "0"
synth_supply*string

the total supply of synths for the asset

Example: "0"
savers_depth*string

the balance of L1 asset deposited into the Savers Vault

Example: "199998"
savers_units*string

the number of units owned by Savers

Example: "199998"
synth_mint_paused*boolean

whether additional synths cannot be minted

Example: true
synth_supply_remaining*string

the amount of synth supply remaining before the current max supply is reached

Example: "123456"
loan_collateral*string

the amount of collateral collects for loans

Example: "123456"
loan_collateral_remaining*string

the amount of remaining collateral collects for loans

Example: "123456"
loan_cr*string

the current loan collateralization ratio

Example: "123456"
derived_depth_bps*string

the depth of the derived virtual pool relative to L1 pool (in basis points)

Example: "123456"
Request
const response = await fetch('https://thor.nownodes.io/thorchain/pools', {
    method: 'GET',
    headers: {},
});
const data = await response.json();
Response
[
  {
    "asset": "BTC.BTC",
    "short_code": "b",
    "status": "Available",
    "decimals": 6,
    "pending_inbound_asset": "101713319",
    "pending_inbound_rune": "464993836",
    "balance_asset": "3197744873",
    "balance_rune": "13460619152985",
    "pool_units": "14694928607473",
    "LP_units": "14694928607473",
    "synth_units": "0",
    "synth_supply": "0",
    "savers_depth": "199998",
    "savers_units": "199998",
    "synth_mint_paused": true,
    "synth_supply_remaining": "123456",
    "loan_collateral": "123456",
    "loan_collateral_remaining": "123456",
    "loan_cr": "123456",
    "derived_depth_bps": "123456"
  }
]