/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.
It works. Grab an API key and use it in your project.
Get an API keyCode snippets
curl "https://api.oanor.com/bitsong-api/v1/governance" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/bitsong-api/v1/governance", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/bitsong-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/bitsong-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": "BitSong",
"count": 10,
"proposals": [
{
"id": "46",
"title": "Upgrade v0.24.0 - Jimi",
"status": "PROPOSAL_STATUS_REJECTED",
"summary": "Upgrades latest versions of wasmvm, ibc-go, and cosmos-sdk. Full upgrade details can be found here: https://github.com/bitsongofficial/go-bitsong/pull/292",
"submit_time": "2025-10-11T08:14:28.058997063Z",
"voting_end_time": "2025-10-18T08:29:43.618547316Z"
},
{
"id": "45",
"title": "Software Upgrade: v023 - Gauss",
"status": "PROPOSAL_STATUS_PASSED",
"summary": "Disables external community pool feature, transfers funds in protocolpool accounts back into distribution module",
"submit_time": "2025-06-23T05:04:30.226828440Z",
"voting_end_time": "2025-06-24T08:26:57.831099020Z"
},
{
"id": "44",
"title": "v022 - Nina",
"status": "PROPOSAL_STATUS_PASSED",
"summary": "Upgrades to latest cosmos-sdk version, resolves crisis invariants for missing slash events in x/distribution.",
"submit_time": "2025-05-11T01:05:24.076906392Z",
"voting_end_time": "2025-05-18T01:05:24.076906392Z"
},
{
"id": "43",
"title": "software upgrade: v021",
"status": "PROPOSAL_STATUS_PASSED",
"summary": "Upgrades to the latest version of go-bitsong. Full upgrade guide can be found here: https://github.com/bitsongofficial/networks/blob/master/bitsong-2b/upgrades/v0.21.0/guide.md",
"submit_time": "2025-02-05T17:39:04.618369482Z",
"voting_end_time": "2025-02-12T17:39:04.618369482Z"
},
{
"id": "42",
"title": "Upgrade V020: patch v018",
"status": "PROPOSAL_STATUS_PASSED",
"summary": "Upgrades to v0.20.2, resolves a bug that was introduced after v0.18 upgrade. https://github.com/permissionlessweb/networks/blob/v019-prep/bitsong-2b/upgrades/v0.20.0/guide.md",
"submit_time": "2024-12-22T09:34:47.445448235Z",
"voting_end_time": "2024-12-29T09:43:00.994588187Z"
},
{
"id": "41",
"title": "v0.18.0",
"status": "PROPOSAL_STATUS_PASSED",
"summary": "upgrade guide: https://github.com/permissionlessweb/networks/blob/master/testnet/upgrades/v0.18.0/guide.md",
"submit_time": "2024-11-22T04:12:45.351041826Z",
"voting_end_time": "2024-11-29T04:12:45.351041826Z"
},
{
"id": "40",
"title": "Authorize Bitsong Account Deployment",
"status": "PROPOSAL_STATUS_P
…