Zum Inhalt springen
GET /v1/pool

Current detail for one pool by id

Live testen

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

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

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

API-Key holen

Code-Snippets

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

Beispiel-Response

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

{
    "data": {
        "apy": 2.35,
        "pool": "747c1d2a-c668-4682-b9f9-296708a3dd90",
        "chain": "Ethereum",
        "source": "DeFiLlama",
        "symbol": "STETH",
        "il_risk": "no",
        "outlook": "Stable/Up",
        "project": "lido",
        "tvl_usd": 14973235926,
        "apy_base": 2.35,
        "exposure": "single",
        "apy_7d_avg": 2.45,
        "apy_reward": null,
        "stablecoin": false,
        "reward_tokens": [],
        "outlook_confidence": 2
    },
    "meta": {
        "timestamp": "2026-06-14T08:04:17.110Z",
        "request_id": "f2a02cdd-71ac-43f9-be65-d848aa099a9e"
    },
    "status": "ok",
    "message": "Pool retrieved successfully",
    "success": true
}