Description
The TVL endpoint provides Total Value Locked snapshots in USD for liquidity pools. Each snapshot represents the pool’s total value computed from reserves multiplied by fiat prices, providing a standardized USD-denominated measure of pool liquidity at each on-chain event.Endpoint Matrix
| Endpoint | Summary | Dataset ID | Typical Latency |
|---|---|---|---|
POST /evm/tvl | Pool TVL snapshots in USD | 0601 | < 300 ms |
Parameter Conventions
Chain identifier for the target EVM network. See Chain enumeration for supported values.
Starting block height (inclusive) for TVL snapshots.
Ending block height (inclusive) for TVL snapshots.
Starting timestamp (ISO-8601). If it falls between blocks, the next block after this timestamp is used.
Ending timestamp (ISO-8601). If it falls between blocks, the last block before this timestamp is used.
BlockDB pool identifiers for filtering TVL data by pool.
Pool contract addresses to scope TVL data.
Minimum TVL threshold in USD for filtering pools.
Usage Guidance
- Pool ranking — Use TVL to rank pools by liquidity depth
- Liquidity migration — Track TVL changes over time to identify liquidity flows
- Protocol health — Monitor aggregate TVL across pools for protocol-level metrics
- Risk assessment — Filter pools by minimum TVL for routing and execution quality
- Dashboards — Build TVL charts and leaderboards with full provenance
TVL Calculation
TVL is computed as:token_amounts[i]is the decimals-adjusted reserve amount for tokenifiat_price[i]is the USD price for tokeniat the snapshot time
Common Patterns
Rank pools by TVL:Dataset Relationships
- Reserves → TVL: Reserve snapshots provide token amounts for TVL calculation
- Prices → TVL: Fiat prices provide USD conversion for TVL
- Pools → TVL: Join pool metadata to TVL snapshots using
pool_uid - TVL → Yields: TVL can be used alongside yields for liquidity-adjusted ROI analysis
See Also
POST /evm/tvl— TVL snapshots endpointPOST /evm/reserves— Pool reserves (input to TVL)POST /evm/pools— Pool metadata registryPOST /evm/yields— Yield predictions- Pool Type — AMM pool classifications