/v1/governors
A period's governors with committed ALGO, eligibility, xGov
Pruébalo en vivo
10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.
Funciona. Consigue una clave API y úsala en tu proyecto.
Obtener una clave APIFragmentos de código
curl "https://api.oanor.com/algorandgov-api/v1/governors" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/algorandgov-api/v1/governors", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/algorandgov-api/v1/governors");
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/algorandgov-api/v1/governors",
headers={"x-oanor-key": "oanor_test_..."}
)
Respuesta de ejemplo
Una respuesta real de este endpoint, capturada en la última comprobación de estado.
{
"data": {
"note": "Governors registered in the period, with each one's committed ALGO, eligibility, xGov status and how many voting sessions they voted in. Paginate with limit & offset. Omit period for the active (or most recent) one.",
"count": 20,
"offset": 0,
"period": "governance-period-15",
"source": "Algorand Foundation governance",
"governors": [
{
"address": "PBW2OUVI3YHFPHVVGF4KNNY4FLG6ZIHCNAPITYFRSZ67HK7A5CHNLNSZPE",
"is_xgov": false,
"is_eligible": false,
"committed_algo": 14434.62032,
"not_eligible_reason": "incomplete-vote",
"registration_datetime": "2025-06-30 16:01:15.768907+00",
"committed_assets_in_algo": 0,
"voted_voting_session_count": 0
},
{
"address": "C6VLOB46CHDMTNGFC3F5WRNGELPVUNDSJCW24FU577WUFXWIXXCMSGR2BQ",
"is_xgov": false,
"is_eligible": true,
"committed_algo": 206182.527058,
"not_eligible_reason": null,
"registration_datetime": "2025-06-30 16:01:21.559139+00",
"committed_assets_in_algo": 0,
"voted_voting_session_count": 1
},
{
"address": "KEXFAU2TWG4X3DDCFKRY6CQDWZOYCNWCEBM255GHKJBFOJJVJAZAHINLCE",
"is_xgov": false,
"is_eligible": true,
"committed_algo": 310.166122,
"not_eligible_reason": null,
"registration_datetime": "2025-06-30 16:01:43.104058+00",
"committed_assets_in_algo": 0,
"voted_voting_session_count": 1
},
{
"address": "Z2PHFWPP334DRPLKHGDNU3T5GEDSMJXEBCPRLLQSVOLJHNMACLYYCFKTVU",
"is_xgov": false,
"is_eligible": true,
"committed_algo": 94700,
"not_eligible_reason": null,
"registration_datetime": "2025-06-30 16:02:14.094617+00",
"committed_assets_in_algo": 0,
"voted_voting_session_count": 1
},
{
"address": "MSXB5CWRWB7V6C2S6DVGD6GYLNDR6ERKMU4BBOBAT45DZ7FHCWEK4CCTWU",
"is_xgov": false,
"is_eligible": true,
"committed_algo": 49000,
"not_eligible_reason": null,
"registration_datetime": "2025-06-30 16:04:17.16301+00",
"committed_assets_in_algo": 0,
"voted_voting_session_count": 1
},
{
"address": "TR3ICSF2HYLH4FF4EX7SNMIMJTFHWYMF3TXYMDGZSG5NTJUNZGMXYSXEAE",
"is_xgov": false,
"is_eligible": true,
"committed_algo": 258.020265,
"not_eligible_reason": null,
"registration_datetime": "2025-06-30 16:04:52.97258+00",
…