Naar de inhoud
GET /v1/project

One protocol's pools summarised

Probeer het live

10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.

Aangepaste headers (optioneel)
api.oanor.com/yieldfarming-api

Het werkt. Haal een API-key op en gebruik hem in je project.

Verkrijg een API-sleutel

Codefragmenten

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

Voorbeeldrespons

Een echte respons van dit endpoint, vastgelegd bij de laatste health check.

{
    "data": {
        "note": "All of one protocol's non-lending pools with the spread of their 30-day APYs and the top pools by sustained yield. Lightly cached.",
        "pools": [
            {
                "apy": 21.5821,
                "chain": "Ethereum",
                "symbol": "WOUSD",
                "il_risk": "no",
                "outlier": false,
                "pool_id": "3a0bfe11-ab8a-4112-8916-5185dfd69883",
                "project": "pendle",
                "tvl_usd": 1511198,
                "apy_base": 21.5821,
                "exposure": "single",
                "pool_meta": "For LP | Maturity 17DEC2026",
                "apy_reward": null,
                "prediction": {
                    "outlook": "Down",
                    "confidence": 2,
                    "probability_pct": 64
                },
                "stablecoin": true,
                "apy_mean_30d": 30.7638,
                "apy_change_7d": -20.9193,
                "reward_tokens": 0,
                "sustained_apy": 21.5821,
                "volume_usd_1d": 1999,
                "apy_change_30d": null
            },
            {
                "apy": 28.8555,
                "chain": "Hyperliquid L1",
                "symbol": "AVLT",
                "il_risk": "no",
                "outlier": false,
                "pool_id": "8cebcae6-4258-4d91-87c7-3de9466c0bea",
                "project": "pendle",
                "tvl_usd": 5297602,
                "apy_base": 28.0544,
                "exposure": "single",
                "pool_meta": "For LP | Maturity 12NOV2026",
                "apy_reward": 0.8011,
                "prediction": {
                    "outlook": "Down",
                    "confidence": 1,
                    "probability_pct": 53
                },
                "stablecoin": false,
                "apy_mean_30d": 28.0104,
                "apy_change_7d": -3.7944,
                "reward_tokens": 1,
                "sustained_apy": 28.0104,
                "volume_usd_1d": 0,
                "apy_change_30d": -4.0574
            },
            {
                "apy": 27.2025,
                "chain": "Ethereum",
                "symbol": "ASDCRV",
                "il_risk": "no",
                "outlier": false,
                "pool_id": "7ecf7729-6c12-423f-837c-0f688746b787",
                "project": "pendle",
                "tvl_usd": 367007,
                "apy_base": 27.2025,
                "exposure": "single",
                "pool_meta": "For buying PT-asdCRV-25JUN2026",
                "apy_reward": null,
                "prediction": {
                    "outlook": "Down",
                    "confidence": 3,
                    "probability_pct": 73
                },
                "stablecoin": false,
                "apy_mean_30d": 27.0246,
                "apy_change_7d": 0.2935,
                "reward_tokens": 0,
                "sustained_apy": 27.0246,
                "volume_usd_1d"
…