Skip to content
GET /v1/tvl

Fluid TVL total and per-chain breakdown

Try it live

10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.

Custom headers (optional)
api.oanor.com/fluid-api

It works. Grab an API key and use it in your project.

Get an API key

Code snippets

curl "https://api.oanor.com/fluid-api/v1/tvl" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/fluid-api/v1/tvl", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/fluid-api/v1/tvl");
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$out = curl_exec($ch);
import requests
requests.get(
    "https://api.oanor.com/fluid-api/v1/tvl",
    headers={"x-oanor-key": "oanor_test_..."}
)

Example response

A real response from this endpoint, captured by the latest health check.

{
    "data": {
        "note": "Total value locked across Fluid's lending, DEX and Lite products, in USD.",
        "chains": [
            {
                "tvl": 458763911,
                "chain": "Ethereum"
            },
            {
                "tvl": 113238325,
                "chain": "Arbitrum"
            },
            {
                "tvl": 112131814,
                "chain": "Plasma"
            },
            {
                "tvl": 19539805,
                "chain": "Base"
            },
            {
                "tvl": 3350253,
                "chain": "Polygon"
            }
        ],
        "source": "DeFiLlama",
        "protocol": "Fluid",
        "total_tvl": 954646375.25,
        "chain_count": 5
    },
    "meta": {
        "timestamp": "2026-06-14T08:04:25.543Z",
        "request_id": "2bf2b5e5-ccd7-4904-8835-cf3debc57ae9"
    },
    "status": "ok",
    "message": "Fluid TVL retrieved successfully",
    "success": true
}