Zum Inhalt springen
GET /v1/markets

Active markets on a chain with liquidity, implied APY, maturity, PT/YT

Live testen

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

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

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

API-Key holen

Code-Snippets

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

Beispiel-Response

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

{
    "data": {
        "chain": "Ethereum",
        "count": 50,
        "source": "Pendle Finance",
        "markets": [
            {
                "name": "SIERRA",
                "expiry": "2026-07-02T00:00:00.000Z",
                "is_new": false,
                "address": "0xa556b5327372ab8aaefda2b756eed0608afd6ca5",
                "fee_rate": 0.001996450590974641,
                "is_prime": false,
                "pt_address": "0x1a69154f6f6247e4457332860fb173251a36e03f",
                "sy_address": "0x399e426e6812943ac22976333698e16eaa80a209",
                "yt_address": "0x8a9e90fe18e9d243f804022224fbd8380d6b76f6",
                "implied_apy": 0.094882,
                "liquidity_usd": 13983315.69,
                "pendle_apy_pct": 0.0898,
                "implied_apy_pct": 9.4882,
                "days_to_maturity": 21,
                "underlying_asset": "0x6bf7788eaa948d9ffba7e9bb386e2d3c9810e0fc",
                "aggregated_apy_pct": 6.9186,
                "max_boosted_apy_pct": 9.2564
            },
            {
                "name": "USDat",
                "expiry": "2026-08-27T00:00:00.000Z",
                "is_new": false,
                "address": "0x9afe7a057a09cf5da748d952078c9c99938b4329",
                "fee_rate": 0.0015303192378361974,
                "is_prime": false,
                "pt_address": "0x1d69402390657308c91179aa184bf992908c1e08",
                "sy_address": "0x7a7de491e1be5287874904e2b7c8488249a4d0a9",
                "yt_address": "0x076a3ea71e83ca09319b161e40f5fb3bb943d3c6",
                "implied_apy": 0.082536,
                "liquidity_usd": 10246597.98,
                "pendle_apy_pct": 0.8977,
                "implied_apy_pct": 8.2536,
                "days_to_maturity": 77,
                "underlying_asset": "0x23238f20b894f29041f48d88ee91131c395aaa71",
                "aggregated_apy_pct": 5.7999,
                "max_boosted_apy_pct": 7.1465
            },
            {
                "name": "sUSDS",
                "expiry": "2026-11-26T00:00:00.000Z",
                "is_new": true,
                "address": "0x9c560ebaf78e596cbcc27411d633a74d628dd7dc",
                "fee_rate": 0.0009643745414209537,
                "is_prime": false,
                "pt_address": "0xdc169abe56461a2e0c034da431ac2a3ebf596094",
                "sy_address": "0xbe3d4ec488a0a042bb86f9176c24f8cd54018ba7",
                "yt_address": "0xc7b8551c6b286ce0b44952320e940bd3dee58a09",
                "implied_apy": 0.047599,
                "liquidity_usd": 10054682.46,
                "pendle_apy_pct": 0.3822,
                "implied_apy_pct": 4.7599,
                "days_to_maturity": 168,
                "underlying_asset": "0xa3931d71877c0e7a3148cb7eb4463524fec27fbd",
                "aggregated_apy_pct": 9.5911,
                "max_boosted_apy_pct": 17.944
            },
            {
                "name": "sUSDe",
                "expiry": "2026-08-13T00:00:00.000Z",
          
…