/v1/market
One market's full detail by address
Try it live
10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.
It works. Grab an API key and use it in your project.
Get an API keyCode snippets
curl "https://api.oanor.com/pendle-api/v1/market" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/pendle-api/v1/market", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/pendle-api/v1/market");
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/market",
headers={"x-oanor-key": "oanor_test_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"data": {
"name": "wstETH",
"chain": "Ethereum",
"expiry": "2027-12-30T00:00:00.000Z",
"is_new": false,
"source": "Pendle Finance",
"address": "0x34280882267ffa6383b363e278b027be083bbe3b",
"fee_rate": 0.0004999999993486881,
"is_prime": true,
"pt_address": "0xb253eff1104802b97ac7e3ac9fdd73aece295a2c",
"sy_address": "0xcbc72d92b2dc8187414f6734718563898740c0bc",
"yt_address": "0x04b7fa1e727d7290d6e24fa9b426d0c940283a95",
"implied_apy": 0.026073,
"liquidity_usd": 2624214.19,
"pendle_apy_pct": 0,
"implied_apy_pct": 2.6073,
"days_to_maturity": 567,
"underlying_asset": "0x7f39c581f595b53c5cb19bd0b3f8da6c935e2ca0",
"aggregated_apy_pct": 2.7371,
"max_boosted_apy_pct": 2.7371
},
"meta": {
"timestamp": "2026-06-10T22:58:09.439Z",
"request_id": "0910d811-cce8-4e08-8445-c6b31ae807e9"
},
"status": "ok",
"message": "Market retrieved successfully",
"success": true
}