Zum Inhalt springen
GET /v1/governance

Latest governance proposals

Live testen

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

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

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

API-Key holen

Code-Snippets

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

Beispiel-Response

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

{
    "data": {
        "note": "The latest MANTRA 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": "MANTRA (mantra-1) LCD",
        "proposals": [
            {
                "title": "v8.2.0 MAINNET MANTRA Chain Upgrade",
                "status": "PROPOSAL_STATUS_PASSED",
                "proposal_id": "33",
                "submit_time": "2026-06-02T07:40:24.528525867Z",
                "voting_end_time": "2026-06-09T07:40:24.528525867Z"
            },
            {
                "title": "Register wmantraUSD ERC20 Denom Pair (Expedited)",
                "status": "PROPOSAL_STATUS_PASSED",
                "proposal_id": "32",
                "submit_time": "2026-05-07T10:05:21.379573700Z",
                "voting_end_time": "2026-05-08T10:32:03.675584912Z"
            },
            {
                "title": "v8.1.1 MAINNET MANTRA Chain Upgrade (Expedited)",
                "status": "PROPOSAL_STATUS_PASSED",
                "proposal_id": "31",
                "submit_time": "2026-05-01T10:49:23.844835010Z",
                "voting_end_time": "2026-05-02T12:07:47.930579099Z"
            },
            {
                "title": "v8.0.0 MAINNET MANTRA Chain Upgrade",
                "status": "PROPOSAL_STATUS_PASSED",
                "proposal_id": "30",
                "submit_time": "2026-04-22T03:50:32.628630549Z",
                "voting_end_time": "2026-04-29T03:50:32.628630549Z"
            },
            {
                "title": "v7.0.0 MAINNET MANTRA Chain Upgrade",
                "status": "PROPOSAL_STATUS_PASSED",
                "proposal_id": "29",
                "submit_time": "2026-02-23T03:54:33.785139491Z",
                "voting_end_time": "2026-03-02T03:54:33.785139491Z"
            },
            {
                "title": "Increase Active set for Decentralization of Network",
                "status": "PROPOSAL_STATUS_PASSED",
                "proposal_id": "28",
                "submit_time": "2026-01-26T10:36:13.362821177Z",
                "voting_end_time": "2026-02-02T10:36:13.362821177Z"
            },
            {
                "title": "Increase Active set for Decentralization of Network",
                "status": "PROPOSAL_STATUS_PASSED",
                "proposal_id": "27",
                "submit_time": "2025-11-10T07:59:32.540031251Z",
                "voting_end_time": "2025-11-17T07:59:32.540031251Z"
            },
            {
                "title": "Redenominating $OM to $MANTRA",
                "status": "PROPOSAL_STATUS_PASSED",
                "proposal_id": "26",
                "submit_time": "2025-10-30T14:52:20.700082491Z",
                "voting_end_time": "2025-11-06T14:52:20.700082491Z"
            },
            {
                "title": "v6.1.0 MAINNET MANTRA Chain Upgrade",
                "status": "PROPOSAL_STATUS_PASSED",
                "propos
…