/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/frax-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/frax-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/frax-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/frax-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": {
"note": "Filter pools by chain (ethereum, arbitrum, fraxtal, optimism, polygon, bsc, avalanche…) or platform (uniswap_v3, curve, convex, balancer, aave…). A pool is looked up by its identifier, e.g. id=Uniswap V3 FRAX/USDC. APYs are percentages.",
"source": "Frax Finance public API (api.frax.finance/v1, live)",
"service": "frax-api",
"endpoints": {
"GET /v1/meta": "This document.",
"GET /v1/pool": "One pool in full with reward breakdown (id=Uniswap V3 FRAX/USDC).",
"GET /v1/pools": "Frax pools ranked by liquidity (chain=ethereum, platform=curve, limit=50 — all optional).",
"GET /v1/summary": "Ecosystem aggregate — TVL, pool count, chain/platform split, top APY pools."
},
"description": "Live liquidity-pool and yield data for the Frax Finance ecosystem (the FRAX stablecoin, frxETH and FXS) from the public Frax API. The Frax-yield view — every incentivised Frax liquidity pool across every chain and DEX, with its locked liquidity and APY. pools = the list of Frax pools (optionally filtered by chain or platform) with pair, tokens, value locked and base/max APY; pool = one pool in full including the reward breakdown (swap fees and incentive rewards); summary = the ecosystem aggregate (total value locked, pool count, distribution across chains and DEX platforms, highest-yielding pools). Live, no key, nothing stored. Distinct from the generic DeFi-yield and protocol APIs.",
"pools_tracked": 273,
"upstream_status": "ok"
},
"meta": {
"timestamp": "2026-06-12T01:42:28.189Z",
"request_id": "6ffac501-2f18-455e-8ed4-06bd3e4f47ba"
},
"status": "ok",
"message": "Meta",
"success": true
}