API of Metric ‘Realized Value’ | Santiment Knowledge Base

Santiment Team

Returns Realized Value of all tokens. Realized Value is based on the acquisition costs of an asset located in a wallet, estimated by using the historical price when the asset was last moved. The realized Value across the whole network is computed by summing the realized values of all wallets holding tokens at the moment. Projects are referred to by a unique identifier (slug).

The query returns the full RV as well as the RV for all tokens that are not in exchange wallets.

Run in explorer

{
  realizedValue(from: "2019-05-10T00:00:00.000Z", interval: "1d", slug: "ethereum", to: "2019-06-23T00:00:00.000Z") {
    datetime
    nonExchangeRealizedValue
    realizedValue
  }
}

Run in terminal

curl \
  -X POST \
  -H "Content-Type: application/json" \
  --data '{ "query": "query{realizedValue(from:\"2019-05-10T00:00:00.000Z\",interval:\"1d\",slug:\"ethereum\",to:\"2019-06-23T00:00:00.000Z\"){datetime, nonExchangeRealizedValue, realizedValue}}" }' \
  https://api.santiment.net/graphql