Zum Inhalt springen
GET /v1/periods

Every governance period with committed ALGO, governors, reward pool, dates

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

Beispiel-Response

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

{
    "data": {
        "note": "Every Algorand Foundation governance period (newest first), each with its total committed ALGO, governor count, reward pool and key dates. Use a slug with /v1/period or /v1/governors.",
        "count": 15,
        "source": "Algorand Foundation governance",
        "periods": [
            {
                "end": "2025-07-15 15:59:59+00",
                "slug": "governance-period-15",
                "start": "2025-06-30 16:00:00+00",
                "title": "Governance Period 15",
                "is_active": false,
                "committed_algo": 77790352.87548,
                "governor_count": null,
                "registration_end": "2025-07-07 15:59:59+00",
                "reward_pool_algo": null,
                "committed_lp_in_algo": 8882475.907136,
                "committed_algo_direct": 68907876.968344
            },
            {
                "end": "2025-03-31 15:59:59+00",
                "slug": "governance-period-14",
                "start": "2024-12-31 16:00:00+00",
                "title": "Governance Period #14",
                "is_active": false,
                "committed_algo": 1069915195.519322,
                "governor_count": null,
                "registration_end": "2025-01-14 16:00:00+00",
                "reward_pool_algo": null,
                "committed_lp_in_algo": 27730669.351697,
                "committed_algo_direct": 1042184526.167625
            },
            {
                "end": "2024-12-31 15:59:59+00",
                "slug": "governance-period-13",
                "start": "2024-09-30 16:00:00+00",
                "title": "Governance Period #13",
                "is_active": false,
                "committed_algo": 1524453009.475444,
                "governor_count": null,
                "registration_end": "2024-10-14 16:00:00+00",
                "reward_pool_algo": null,
                "committed_lp_in_algo": 41543197.022013,
                "committed_algo_direct": 1482909812.453431
            },
            {
                "end": "2024-09-30 15:59:59+00",
                "slug": "governance-period-12",
                "start": "2024-06-30 16:00:00+00",
                "title": "Governance Period 12",
                "is_active": false,
                "committed_algo": 1568299125.324741,
                "governor_count": null,
                "registration_end": "2024-07-15 16:00:00+00",
                "reward_pool_algo": null,
                "committed_lp_in_algo": 32716334.153949,
                "committed_algo_direct": 1535582791.170792
            },
            {
                "end": "2024-06-30 15:59:59+00",
                "slug": "governance-period-11",
                "start": "2024-03-31 16:00:00+00",
                "title": "Governance Period #11",
                "is_active": false,
                "committed_algo": 1624567535.699458,
                "governor_count": null,
                "registration_end": "2024-04-15 16
…