Zum Inhalt springen
GET /v1/meta

Service metadata

Live testen

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

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

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

API-Key holen

Code-Snippets

curl "https://api.oanor.com/curve-api/v1/meta" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/curve-api/v1/meta", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/curve-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/curve-api/v1/meta",
    headers={"x-oanor-key": "oanor_test_..."}
)

Beispiel-Response

Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.

{
    "data": {
        "source": "Curve Finance API (api.curve.finance, live)",
        "service": "curve-api",
        "endpoints": {
            "GET /v1/meta": "This document.",
            "GET /v1/pool": "One pool's full detail by address (chain=ethereum, registry=main, address=0x...).",
            "GET /v1/pools": "Pools on a chain/registry with TVL, coins, amp, gauge APY (chain=ethereum, registry=main, limit=50).",
            "GET /v1/volumes": "A chain's total and per-pool trading volume (chain=ethereum).",
            "GET /v1/platforms": "Every chain Curve runs on and its pool registries."
        },
        "chain_count": 21,
        "description": "Live DeFi data from Curve Finance, the dominant decentralised exchange for stablecoins and pegged assets (StableSwap AMM), via its public API. The platforms endpoint lists every chain Curve runs on and the pool registries on each; the pools endpoint returns a chain/registry's liquidity pools with USD TVL, underlying coins and prices, amplification coefficient, virtual price and CRV gauge APY, sorted by TVL; the pool endpoint returns one pool's full detail by address; the volumes endpoint returns the chain's total trading volume and per-pool volume. Live, no key, nothing stored. Distinct from on-chain explorers, general DEX-pool feeds and price APIs — this is Curve's own StableSwap pool, TVL and gauge layer across Ethereum and many L2s.",
        "upstream_status": "ok"
    },
    "meta": {
        "timestamp": "2026-06-10T22:58:17.400Z",
        "request_id": "380b7c09-6f00-44d3-acc3-f1aaf8bd5bad"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}