Μετάβαση στο περιεχόμενο
GET /v1/meta

Service metadata

Δοκιμάστε το ζωντανά

10 δωρεάν κλήσεις την ημέρα — χωρίς εγγραφή, χωρίς κλειδί API. Μέσω του gateway του oanor.

Προσαρμοσμένες κεφαλίδες (προαιρετικά)
api.oanor.com/algorandgov-api

Δουλεύει. Πάρε ένα κλειδί API και χρησιμοποίησέ το στο έργο σου.

Λάβετε ένα κλειδί API

Αποσπάσματα κώδικα

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

Παράδειγμα απόκρισης

Πραγματική απόκριση αυτού του endpoint, από τον τελευταίο έλεγχο υγείας.

{
    "data": {
        "sample": {
            "latest_period": "governance-period-15",
            "committed_algo": 77790352.87548
        },
        "source": "official Algorand Foundation governance API (governance.algorand.foundation), keyless",
        "service": "algorandgov-api",
        "endpoints": {
            "GET /v1/meta": "This document.",
            "GET /v1/period": "One period in full: reward-pool breakdown and voting sessions (slug; omit for active/latest).",
            "GET /v1/periods": "Every governance period with committed ALGO, governors, reward pool, dates (limit).",
            "GET /v1/governors": "A period's governors ranked, with committed ALGO, eligibility, xGov (period, limit, offset)."
        },
        "description": "Read the Algorand Foundation governance program live from the official public API: list every governance period with its committed ALGO, governor count, reward pool and dates; read one period in full with its reward-pool breakdown and voting sessions; and rank a period's governors by committed ALGO with eligibility and xGov status. The governance-and-voting layer for Algorand wallets, governor dashboards and analytics. Live, short cache only.",
        "upstream_status": "ok"
    },
    "meta": {
        "timestamp": "2026-06-14T08:03:47.298Z",
        "request_id": "3b663014-1a7e-4a05-bcb3-355c0f796bba"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}