Zum Inhalt springen
GET /v1/meta

Service metadata & live sample

Live testen

10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.

Eigene Header (optional)
api.oanor.com/fluid-api

Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.

API-Key holen

Code-Snippets

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_..."}
)

Beispiel-Response

Echte Antwort dieses Endpoints, erfasst beim letzten 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
}