/v1/meta
Service metadata
Pruébalo en vivo
10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.
Funciona. Consigue una clave API y úsala en tu proyecto.
Obtener una clave APIFragmentos de código
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_..."}
)
Respuesta de ejemplo
Una respuesta real de este endpoint, capturada en la última comprobación de estado.
{
"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
}