/v1/pool
Stake pool live economics
Provalo dal vivo
10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.
Funziona. Prendi una chiave API e usala nel tuo progetto.
Ottieni una chiave APIFrammenti di codice
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_..."}
)
Risposta di esempio
Una risposta reale di questo endpoint, acquisita dall'ultimo 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
}