Zum Inhalt springen
GET /v1/governance

Recent governance proposals

Live testen

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

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

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

API-Key holen

Code-Snippets

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

Beispiel-Response

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

{
    "data": {
        "chain": "Oraichain",
        "count": 15,
        "symbol": "ORAI",
        "proposals": [
            {
                "id": "323",
                "title": "Execute Burn of 500,000 ORAI",
                "status": "PROPOSAL_STATUS_REJECTED",
                "submit_time": "2026-01-26T04:37:24.667313418Z",
                "voting_end_time": "2026-01-31T04:37:24.667313418Z"
            },
            {
                "id": "322",
                "title": "Execute Transfer for Oraichain Mainnet Block Reward Continuation",
                "status": "PROPOSAL_STATUS_PASSED",
                "submit_time": "2026-01-25T03:58:01.079199412Z",
                "voting_end_time": "2026-01-26T03:58:01.079199412Z"
            },
            {
                "id": "321",
                "title": "Upgrade Oraichain to v0.50.13",
                "status": "PROPOSAL_STATUS_PASSED",
                "submit_time": "2026-01-16T03:21:05.896704127Z",
                "voting_end_time": "2026-01-17T03:21:05.896704127Z"
            },
            {
                "id": "320",
                "title": "Execute Fund Allocation for Oraichain Quant Terminal",
                "status": "PROPOSAL_STATUS_PASSED",
                "submit_time": "2025-12-17T03:57:08.066912477Z",
                "voting_end_time": "2025-12-18T03:57:08.066912477Z"
            },
            {
                "id": "319",
                "title": "ORAI Tokenomics 2026 – Governance Proposal",
                "status": "PROPOSAL_STATUS_PASSED",
                "submit_time": "2025-12-11T13:24:48.502002813Z",
                "voting_end_time": "2025-12-16T13:24:48.502002813Z"
            },
            {
                "id": "318",
                "title": "Liquidity Provision for Oraichain Bridge",
                "status": "PROPOSAL_STATUS_PASSED",
                "submit_time": "2025-09-25T06:49:20.792415798Z",
                "voting_end_time": "2025-09-30T06:49:20.792415798Z"
            },
            {
                "id": "317",
                "title": "Upgrade Oraichain to v0.50.12",
                "status": "PROPOSAL_STATUS_PASSED",
                "submit_time": "2025-07-14T07:49:47.115850088Z",
                "voting_end_time": "2025-07-19T07:49:47.115850088Z"
            },
            {
                "id": "316",
                "title": "Disable module for maintainance and enhance EVM defautl precompile contracts",
                "status": "PROPOSAL_STATUS_PASSED",
                "submit_time": "2025-05-08T07:33:22.815866273Z",
                "voting_end_time": "2025-05-09T07:33:22.815866273Z"
            },
            {
                "id": "315",
                "title": "Upgrade Oraichain to v0.50.11",
                "status": "PROPOSAL_STATUS_PASSED",
                "submit_time": "2025-04-28T07:46:59.318159566Z",
                "voting_end_time": "2025-05-03T07:46:59.318159566Z"
            },
            {
                "id": "314",
  
…