Zum Inhalt springen
GET /v1/period

One period in full: reward-pool breakdown and voting sessions

Live testen

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

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

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

API-Key holen

Code-Snippets

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

Beispiel-Response

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

{
    "data": {
        "end": "2025-07-15 15:59:59+00",
        "note": "A single Algorand governance period in full: its committed ALGO, reward-pool breakdown (DeFi vs non-DeFi), sign-up address and the voting sessions held in the period. Omit slug for the active (or most recent) period.",
        "slug": "governance-period-15",
        "start": "2025-06-30 16:00:00+00",
        "title": "Governance Period 15",
        "source": "Algorand Foundation governance",
        "is_active": false,
        "committed_algo": 77790352.87548,
        "governor_count": 1394,
        "sign_up_address": "RW466IANOKLA36QARHMBX5VCY3PYDR3H2N5XHPDARG6UBOKCIK7WAMLSCA",
        "voting_sessions": [
            {
                "slug": "period-15-voting-session-1",
                "title": "Period 15, Voting Session 1",
                "voting_end": "2025-07-15 15:58:00+00",
                "topic_count": 22,
                "voting_start": "2025-07-07 16:00:00+00",
                "short_description": "xGov Council Election 2025"
            }
        ],
        "registration_end": "2025-07-07 15:59:59+00",
        "reward_pool_algo": 0,
        "committed_lp_in_algo": 8882475.907136,
        "committed_algo_direct": 68907876.968344,
        "rewards_reserved_defi_algo": 0,
        "rewards_reserved_non_defi_algo": 0,
        "committed_for_extra_rewards_algo": 0
    },
    "meta": {
        "timestamp": "2026-06-14T08:03:46.952Z",
        "request_id": "b3b21fe2-b12f-4b14-a0b7-86ea92cd4096"
    },
    "status": "ok",
    "message": "Period retrieved successfully",
    "success": true
}