/v1/governance
Latest governance proposals
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/akash-api/v1/governance" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/akash-api/v1/governance", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/akash-api/v1/governance");
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/akash-api/v1/governance",
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": {
"note": "The latest Akash on-chain governance proposals (most recent first) — each proposal's id, title, status and voting window. Pass limit (1-50, default 10).",
"count": 10,
"source": "Akash Network (akashnet-2) LCD",
"proposals": [
{
"title": "Akash Mainnet 18 Upgrade",
"status": "PROPOSAL_STATUS_PASSED",
"proposal_id": "328",
"submit_time": "2026-06-03T15:59:14.821274939Z",
"voting_end_time": "2026-06-10T16:36:25.314757532Z"
},
{
"title": "Recover Akash IBC Client 07-tendermint-118 for UX Chain (Umee)",
"status": "PROPOSAL_STATUS_PASSED",
"proposal_id": "327",
"submit_time": "2026-06-03T14:08:25.306401101Z",
"voting_end_time": "2026-06-10T14:08:25.306401101Z"
},
{
"title": "Recover expired UX Chain IBC client",
"status": "PROPOSAL_STATUS_PASSED",
"proposal_id": "326",
"submit_time": "2026-05-29T12:22:20.151742564Z",
"voting_end_time": "2026-06-05T12:22:20.151742564Z"
},
{
"title": "AEP Support Services – Q4 2025 / Q1 2026 Funding Proposal Part II",
"status": "PROPOSAL_STATUS_PASSED",
"proposal_id": "325",
"submit_time": "2026-05-11T20:43:59.057377508Z",
"voting_end_time": "2026-05-18T20:43:59.057377508Z"
},
{
"title": "Client Engineering – Q4 2025 / Q1 2026 Funding Proposal Part II",
"status": "PROPOSAL_STATUS_PASSED",
"proposal_id": "324",
"submit_time": "2026-05-11T20:39:51.592562637Z",
"voting_end_time": "2026-05-18T20:39:51.592562637Z"
},
{
"title": "Core Engineering – Q4 2025 / Q1 2026 Funding Proposal Part II",
"status": "PROPOSAL_STATUS_PASSED",
"proposal_id": "323",
"submit_time": "2026-05-11T20:22:58.339443037Z",
"voting_end_time": "2026-05-18T20:22:58.339443037Z"
},
{
"title": "Akash Inflation & Community Pool Update Proposal — May 2026",
"status": "PROPOSAL_STATUS_PASSED",
"proposal_id": "322",
"submit_time": "2026-05-08T21:30:29.396369107Z",
"voting_end_time": "2026-05-15T21:35:58.661722233Z"
},
{
"title": "AEP Support Services Q4 2025 / Q1 2026 Funding Proposal Part I",
"status": "PROPOSAL_STATUS_PASSED",
"proposal_id": "321",
"submit_time": "2026-03-19T18:43:09.798575617Z",
"voting_end_time": "2026-03-26T18:43:09.798575617Z"
},
{
"title"
…