/v1/meta
Service metadata & live sample
Provalo dal vivo
10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.
Funziona. Prendi una chiave API e usala nel tuo progetto.
Ottieni una chiave APIFrammenti di codice
curl "https://api.oanor.com/fluid-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/fluid-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/fluid-api/v1/meta");
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/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Risposta di esempio
Una risposta reale di questo endpoint, acquisita dall'ultimo health check.
{
"data": {
"note": "pools takes optional product (dex, lending or lite), chain (e.g. Ethereum, Arbitrum, Base), min_tvl, limit (1-100) and sort (tvl, apy or supply_apy). All money values are USD; APYs are percentages. Other endpoints take no parameters.",
"sample": {
"total_tvl": 954646375.25,
"dex_volume_24h": 56066949
},
"source": "DeFiLlama open API (api.llama.fi + yields.llama.fi), live",
"service": "fluid-api",
"endpoints": {
"GET /v1/dex": "Fluid's DEX trading volume and protocol fees (24h/7d/30d).",
"GET /v1/tvl": "Fluid TVL total and per-chain breakdown.",
"GET /v1/meta": "This document.",
"GET /v1/pools": "Positions across Fluid's dex / lending / lite products with TVL and APY (product, chain, sort).",
"GET /v1/overview": "Combined Fluid snapshot (TVL + DEX volume + fees + TVL by product + top pool)."
},
"description": "Live protocol metrics for Fluid (by Instadapp), the hybrid DeFi protocol combining a lending money-market AND a DEX in one capital-efficient system, keyless. Total value locked, DEX trading volume, protocol fees, and the positions across all three Fluid products — the DEX, the lending markets and Fluid Lite (vaults) — each with TVL and supply APY. One combined overview snapshots it all. Live, nothing stored beyond a short protective cache. The Fluid-metrics layer for DeFi dashboards, lending, DEX, yield and risk apps. Distinct from pure DEX, pure lending and generic TVL browsers — Fluid's hybrid lending-plus-DEX model specifically.",
"upstream_status": "ok"
},
"meta": {
"timestamp": "2026-06-14T08:04:25.740Z",
"request_id": "52a7d0cd-b249-46ff-bf70-2b763a2ca687"
},
"status": "ok",
"message": "Meta",
"success": true
}