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

Service metadata

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

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

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

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

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

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

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

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

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

{
    "data": {
        "sample": {
            "open_in_window": 12,
            "total_proposals": 122261
        },
        "source": "official Internet Computer dashboard API (ic-api.internetcomputer.org), keyless",
        "service": "icpgov-api",
        "endpoints": {
            "GET /v1/meta": "This document.",
            "GET /v1/stats": "Live governance overview: totals, open count, breakdown by topic & status.",
            "GET /v1/proposal": "One proposal in full: tally, action, timestamps (id; omit for latest).",
            "GET /v1/proposals": "NNS proposals with tally, filterable by topic & status (limit, offset, topic, status)."
        },
        "description": "Read Internet Computer NNS (Network Nervous System) governance live from the official public dashboard API: list proposals filtered by topic and status with their voting-power tally, read a single proposal in full, and get a live governance overview (total proposals, open count, breakdown by topic/status). The on-chain governance layer for Internet Computer wallets, neuron dashboards and voters. Live, short cache only.",
        "upstream_status": "ok"
    },
    "meta": {
        "timestamp": "2026-06-14T08:03:45.300Z",
        "request_id": "13a7ba4e-a843-4dab-a83e-442098af95b1"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}