Dpools

Returns the pool information for all derived assets.

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

OK

Body
asset*string
Example: "BTC.BTC"
status*string
Example: "Available"
decimalsinteger (int64)
Example: 6
balance_asset*string
Example: "3197744873"
balance_rune*string
Example: "13460619152985"
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/dpools', {
    method: 'GET',
    headers: {},
});
const data = await response.json();
Response
[
  {
    "asset": "BTC.BTC",
    "status": "Available",
    "decimals": 6,
    "balance_asset": "3197744873",
    "balance_rune": "13460619152985",
    "derived_depth_bps": "123456"
  }
]