Zum Inhalt springen
GET /v1/pool

Stake pool live economics

Live testen

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

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

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

API-Key holen

Code-Snippets

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

Beispiel-Response

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

{
    "data": {
        "name": "Kind Orange Heisenberg",
        "source": "Cardano (Koios)",
        "status": "registered",
        "ticker": "KOH",
        "pool_id": "pool1fl20ddkpvnstlx63fal6e3ku46r76nk2s4mqtk5jnyxn2vt7hg6",
        "homepage": null,
        "margin_pct": 5,
        "pledge_ada": 0,
        "blocks_minted": 19196,
        "fixed_cost_ada": 340,
        "live_stake_ada": 70517481.757637,
        "reward_address": "stake1uxyv6prv3gcvpw73udgdwuqqnh7gn6y7dfw3q9n0gjl82rq9n5mf4",
        "live_delegators": 10,
        "live_pledge_ada": 0,
        "active_stake_ada": 70536005.404329,
        "live_saturation_pct": 91.15
    },
    "meta": {
        "timestamp": "2026-06-09T20:24:37.767Z",
        "request_id": "55a23fb3-18df-4bbc-b594-f4bb92bddc16"
    },
    "status": "ok",
    "message": "Pool retrieved successfully",
    "success": true
}