This endpoint provides data on stablecoin liquidity in Automated Market Makers (AMMs) and Decentralized Exchanges (DEXs), including TVL, pairs, and pool depth.
Endpoint
GET /data/stablecoins/amm-liquidity
Description
Returns TVL, pool depth, and major trading pairs for stablecoins in AMMs/DEXs.
Response Example
{
"pairs": [
{"pair": "USDC/ETH", "tvl": 10000000, "poolDepth": 5000000},
{"pair": "DAI/USDT", "tvl": 7000000, "poolDepth": 3500000}
],
"totalTVL": 17000000
}Stablecoin Trading Volume on DEXs
This endpoint provides daily and weekly trading volume for stablecoins on DEXs.
Endpoint
GET /data/stablecoins/dex-volume
Description
Returns daily and weekly trading volume for major stablecoins on DEXs.
Response Example
{
"dailyVolume": 12000000,
"weeklyVolume": 84000000
}