Aller au contenu
GET /v1/meta

Service metadata

Essayez-le en direct

10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.

En-têtes personnalisés (facultatif)
api.oanor.com/pendle-api

Ça marche. Récupérez une clé API et utilisez-la dans votre projet.

Obtenez une clé API

Extraits de code

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

Exemple de réponse

Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.

{
    "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
}