/v1/meta
Service metadata
Essayez-le en direct
10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.
Ça marche. Récupérez une clé API et utilisez-la dans votre projet.
Obtenez une clé APIExtraits de code
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_..."}
)
Exemple de réponse
Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.
{
"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
}