/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/pendle-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/pendle-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/pendle-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/pendle-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": "APYs are fractions (0.05 = 5%), also given as *_pct; liquidity is in USD; markets shown are active (not yet matured).",
"source": "Pendle Finance API (api-v2.pendle.finance, live)",
"service": "pendle-api",
"endpoints": {
"GET /v1/top": "Highest implied-APY markets with a liquidity floor (chain=1, limit=10, min_liquidity=100000).",
"GET /v1/meta": "This document.",
"GET /v1/chains": "Chains Pendle runs on.",
"GET /v1/market": "One market's full detail by address (chain=1, address=0x...).",
"GET /v1/markets": "Active markets on a chain with liquidity, implied APY, maturity, PT/YT (chain=1, limit=50)."
},
"description": "Live DeFi data from Pendle Finance, the yield-tokenisation protocol, via its public API. Pendle splits a yield-bearing asset into a Principal Token (PT, a fixed-yield instrument redeemable 1:1 at maturity) and a Yield Token (YT, the streaming yield), traded in an AMM market with a fixed expiry. The markets endpoint returns the active markets on a chain with liquidity, implied APY (the fixed rate a PT buyer locks), aggregated and max-boosted APY, maturity and PT/YT/SY addresses, sorted by liquidity; the market endpoint returns one market's detail by address; the top endpoint ranks the highest implied-APY markets with a liquidity floor; the chains endpoint lists the chains Pendle runs on. Live, no key, nothing stored. Distinct from on-chain explorers, DEX-pool feeds, yield-vault and price APIs — this is Pendle's own yield-tokenisation and PT/YT-market layer.",
"upstream_status": "ok",
"ethereum_active_markets": 83
},
"meta": {
"timestamp": "2026-06-10T22:58:09.776Z",
"request_id": "a891c1fd-05a2-477a-8be0-c5647aaaa9cc"
},
"status": "ok",
"message": "Meta",
"success": true
}