Zum Inhalt springen
GET /v1/proposals

NNS proposals with tally, filterable by topic & status

Live testen

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

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

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

API-Key holen

Code-Snippets

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

Beispiel-Response

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

{
    "data": {
        "note": "Internet Computer NNS governance proposals (newest first), each with its topic, status, proposer neuron, voting deadline and yes/no voting-power tally. Filter with topic (e.g. GOVERNANCE, NETWORK_ECONOMICS) and status (OPEN/EXECUTED/REJECTED/ADOPTED).",
        "count": 0,
        "topic": "Governance",
        "offset": 0,
        "source": "Internet Computer dashboard",
        "status": "OPEN",
        "proposals": [],
        "total_proposals": 0
    },
    "meta": {
        "timestamp": "2026-06-14T08:03:44.680Z",
        "request_id": "2f0be55b-5808-44c6-a884-6812e6d17bbc"
    },
    "status": "ok",
    "message": "Proposals retrieved successfully",
    "success": true
}