Ir al contenido
GET /v1/active

OpenGov referenda currently open for voting

Pruébalo en vivo

10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.

Encabezados personalizados (opcional)
api.oanor.com/polkadotgov-api

Funciona. Consigue una clave API y úsala en tu proyecto.

Obtener una clave API

Fragmentos de código

curl "https://api.oanor.com/polkadotgov-api/v1/active" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/polkadotgov-api/v1/active", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/polkadotgov-api/v1/active");
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/polkadotgov-api/v1/active",
    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": "OpenGov referenda that are currently live and can still be voted on (status Deciding / Confirming / Submitted / Preparing). Use an id with /v1/referendum for the full tally. Pass network=kusama for Kusama.",
        "count": 6,
        "token": "DOT",
        "source": "Polkassembly",
        "network": "polkadot",
        "referenda": [
            {
                "id": 1903,
                "title": "Vibly Short-Term Repayable Bridge Funding Request",
                "track": 31,
                "status": "Deciding",
                "proposer": "12gj7WyRWVAbmUXk1nLoGaK1Um47tcmxdd138DSuYZgngetP",
                "created_at": "2026-06-13T05:03:12.000Z"
            },
            {
                "id": 1899,
                "title": "Closeout of Bounty 22 (Polkadot Assurance Legion / DotPAL) and Bounty 36 (DeFi Infrastructure & Tooling)",
                "track": 11,
                "status": "Deciding",
                "proposer": "138bU3vLAuBkJJ9ujdpjMpZpkT5AKakVnXmQBVZNMCgfjtxp",
                "created_at": "2026-05-29T10:40:24.000Z"
            },
            {
                "id": 1898,
                "title": ".ID username authority registration for the dotID identity registrar",
                "track": 14,
                "status": "Deciding",
                "proposer": "16g6ZBYbEP3kRMgVBki7zdvdGpymXDyHWzj3D3rDaEATXzc8",
                "created_at": "2026-05-25T13:09:24.000Z"
            },
            {
                "id": 1897,
                "title": "plaza.fun — Native Asset Activation Layer for Polkadot Hub: Retroactive Development Funding",
                "track": 33,
                "status": "Deciding",
                "proposer": "1J1et4TjqPZRrX4zKFA8ZrikiU4ijyWMdEHW1VNvnng5CJp",
                "created_at": "2026-05-25T07:44:00.000Z"
            },
            {
                "id": 1896,
                "title": "Spanish Education Plan by Polkadot Mexico: Building the Next Generation of Mexico Developers",
                "track": 32,
                "status": "Deciding",
                "proposer": "15XF37GkxgRJakURR4jycdrJnqWQctT5yUPzqLn81TZmwBDF",
                "created_at": "2026-05-23T13:00:36.000Z"
            },
            {
                "id": 1891,
                "title": "IBP Bounty Top-Up",
                "track": 11,
                "status": "Deciding",
                "proposer": "1eGtATyy4ayn77dsrhdW8N3Vs1yjqjzJcintksNmScqy31j",
                "created_at": "2026-05-19T13:20:12.000Z"
            }
        ]
    },
    "meta": {
        "timestamp": "2026-06-14T08:03:46.075Z",
        "request_id": "95168072-bb98-4965-9624-6199b621b146"
    },
    "status": "ok",
    "message": "Active referenda retrieved successfully",
    "success": true
}