Skip to content
GET /v1/governance

Recent on-chain governance proposals

Try it live

10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.

Custom headers (optional)
api.oanor.com/chihuahua-api

It works. Grab an API key and use it in your project.

Get an API key

Code snippets

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

Example response

A real response from this endpoint, captured by the latest health check.

{
    "data": {
        "chain": "Chihuahua",
        "count": 10,
        "proposals": [
            {
                "id": "98",
                "title": "Recover Expired IBC Client 07-tendermint-45 (Osmosis)",
                "status": "PROPOSAL_STATUS_FAILED",
                "summary": "This proposal recovers the expired IBC client 07-tendermint-45 connecting Chihuahua to Osmosis by updating it with the active state of substitute client 07-tendermint-224.",
                "submit_time": "2026-05-25T21:08:33.960019737Z",
                "voting_end_time": "2026-05-30T21:08:33.960019737Z"
            },
            {
                "id": "97",
                "title": "Leash the Inflation: Taking $HUAHUA to 0% for Maximum Chill!",
                "status": "PROPOSAL_STATUS_PASSED",
                "summary": "Our beloved $HUAHUA is tired of the inflation treadmill. This proposal slashes the inflation rate to a flat 0% to transform Chihuahua from an hyperactive puppy into a stable, well-fed couch coin. Zero inflation means every $HUAHUA you hold ",
                "submit_time": "2025-12-05T08:14:22.284455643Z",
                "voting_end_time": "2025-12-10T08:14:22.284455643Z"
            },
            {
                "id": "96",
                "title": "Upgrade v9.0.6",
                "status": "PROPOSAL_STATUS_PASSED",
                "summary": "This governance proposal is for an on-chain upgrade to Chihuahua **v9.0.6**",
                "submit_time": "2025-10-21T13:41:48.588747817Z",
                "voting_end_time": "2025-10-26T13:41:48.588747817Z"
            },
            {
                "id": "95",
                "title": "Updating TokenFactory Params",
                "status": "PROPOSAL_STATUS_PASSED",
                "summary": "UAHUASWAP is coming! This proposal updates the tokenfactory module params",
                "submit_time": "2025-06-17T20:25:41.410931248Z",
                "voting_end_time": "2025-06-22T20:25:41.410931248Z"
            },
            {
                "id": "94",
                "title": "Updating Liquidity Pools Params",
                "status": "PROPOSAL_STATUS_PASSED",
                "summary": "HUAHUASWAP is coming! This proposal updates the liquidity module params and will be followed by another proposal",
                "submit_time": "2025-06-17T20:22:31.583388497Z",
                "voting_end_time": "2025-06-22T20:22:31.583388497Z"
            },
            {
                "id": "93",
                "title": "Upgrade v9.0.5",
                "status": "PROPOSAL_STATUS_PASSED",
                "summary": "This governance proposal is for an on-chain upgrade to Chihuahua **v9.0.5**",
                "submit_time": "2025-06-11T07:00:36.877649341Z",
                "voting_end_time": "2025-06-16T07:00:36.877649341Z"
            },
            {
                "id": "92",
                "title": "Upgrade v9.0.4",
                "status": "PROPOSAL_STATUS_PASSED",
               
…