/v1/proposals
NNS proposals with tally, filterable by topic & status
Pruébalo en vivo
10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.
Funciona. Consigue una clave API y úsala en tu proyecto.
Obtener una clave APIFragmentos de código
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_..."}
)
Respuesta de ejemplo
Una respuesta real de este endpoint, capturada en la última comprobación de estado.
{
"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
}