Naar de inhoud
GET /v1/pool

One pool in full: identity + live economics

Probeer het live

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

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

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

Verkrijg een API-sleutel

Codefragmenten

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

Voorbeeldrespons

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

{
    "data": {
        "name": "OctasPool",
        "note": "One stake pool in full: its registered identity (ticker, name, homepage) from off-chain metadata, plus on-chain economics — margin, fixed cost, pledge, live delegated stake, saturation, delegator count, lifetime blocks and status. Omit pool_id to use the first pool.",
        "source": "Koios",
        "ticker": "OCTAS",
        "pool_id": "pool1z5uqdk7dzdxaae5633fqfcu2eqzy3a3rgtuvy087fdld7yws0xt",
        "homepage": "https://octaluso.dyndns.org",
        "meta_url": "https://raw.githubusercontent.com/Octalus/cardano/master/p.json",
        "margin_pct": 0.8999999999999999,
        "pledge_ada": 50000,
        "block_count": 22896,
        "description": "Octa's Performance Pool",
        "pool_id_hex": "153806dbcd134ddee69a8c5204e38ac80448f62342f8c23cfe4b7edf",
        "pool_status": "registered",
        "reward_addr": "stake1uy89kzrdlpaz5rzu8x95r4qnlpqhd3f8mf09edjp73vcs3qhktrtm",
        "delegated_drep": "drep1y2t4hsu6zk98407q4ymj5jnm2d52rh76dv6whl88r9dts4qayakaf",
        "fixed_cost_ada": 340,
        "live_stake_ada": 59396323.83871,
        "active_epoch_no": 589,
        "live_delegators": 5111,
        "live_saturation_pct": 76.75
    },
    "meta": {
        "timestamp": "2026-06-14T17:04:22.318Z",
        "request_id": "099b4417-1680-4abb-ab58-cf269911e03c"
    },
    "status": "ok",
    "message": "Pool retrieved successfully",
    "success": true
}