/v1/active
OpenGov referenda currently open for voting
Probeer het live
10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.
Het werkt. Haal een API-key op en gebruik hem in je project.
Verkrijg een API-sleutelCodefragmenten
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_..."}
)
Voorbeeldrespons
Een echte respons van dit endpoint, vastgelegd bij de laatste health check.
{
"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
}