Deprecated DeFi

⚠️

Note: The underlying data for metrics is no longer supported. Although data remains accessible through the API, we do not recommend its use.

Description

Some of the DeFi-related metrics have their own pages:

MakerDAO Special Metrics: MakerDAO metrics

Metrics related to DeFi protocols: Flow and balance metrics

On this page, the following metrics are defined:

  • defi_total_value_locked_usd - Shows total value locked in DeFi projects, available in USD.
  • defi_total_value_locked_eth - Shows total value locked in DeFi projects, available in ETH.

Access

Restricted Access.


Measuring Unit

Amount of USD/ETH


Data Type

Timeseries Data


Frequency

Hourly Intervals


Latency

Price Latency


Available Assets

Available for ethereum.


SanAPI

The amount of total locked ETH coins is available under the defi_total_value_locked_eth name.

{
getMetric(metric: "defi_total_value_locked_eth") {
timeseriesDataJson(
slug: "ethereum"
from: "2020-04-01T00:00:00Z"
to: "2020-04-07T00:00:00Z"
interval: "1h"
)
}
}

Denominated in USD: defi_total_value_locked_usd.

{
getMetric(metric: "defi_total_value_locked_usd") {
timeseriesDataJson(
slug: "ethereum"
from: "2020-04-01T00:00:00Z"
to: "2020-04-07T00:00:00Z"
interval: "1h"
)
}
}