/v1/governance
Recent 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/carbon-api/v1/governance" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/carbon-api/v1/governance", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/carbon-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/carbon-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": "Carbon",
"count": 15,
"symbol": "SWTH",
"proposals": [
{
"id": "425",
"title": "V2.81.0 Software Upgrade Proposal",
"status": "PROPOSAL_STATUS_PASSED",
"submit_time": "2026-05-18T11:22:51.220753085Z",
"voting_end_time": "2026-05-18T23:22:51.220753085Z"
},
{
"id": "424",
"title": "V2.80.0 Software Upgrade Proposal",
"status": "PROPOSAL_STATUS_PASSED",
"submit_time": "2026-05-08T06:18:47.305998974Z",
"voting_end_time": "2026-05-09T06:18:47.305998974Z"
},
{
"id": "423",
"title": "Cancel V2.79.0 Software Upgrade Proposal",
"status": "PROPOSAL_STATUS_PASSED",
"submit_time": "2026-05-01T08:59:53.381881406Z",
"voting_end_time": "2026-05-02T08:59:53.381881406Z"
},
{
"id": "422",
"title": "V2.79.0 Software Upgrade Proposal",
"status": "PROPOSAL_STATUS_PASSED",
"submit_time": "2026-04-30T03:24:01.872841193Z",
"voting_end_time": "2026-05-01T03:24:01.872841193Z"
},
{
"id": "421",
"title": "Recover Injective -> Demex IBC client",
"status": "PROPOSAL_STATUS_PASSED",
"submit_time": "2026-03-23T07:57:53.005544587Z",
"voting_end_time": "2026-03-24T07:57:53.005544587Z"
},
{
"id": "420",
"title": "V2.78.0 Software Upgrade Proposal",
"status": "PROPOSAL_STATUS_PASSED",
"submit_time": "2026-03-18T02:57:31.671076502Z",
"voting_end_time": "2026-03-19T02:57:31.671076502Z"
},
{
"id": "419",
"title": "V2.77.0 Software Upgrade Proposal",
"status": "PROPOSAL_STATUS_PASSED",
"submit_time": "2026-03-03T14:00:42.931953457Z",
"voting_end_time": "2026-03-04T02:00:42.931953457Z"
},
{
"id": "418",
"title": "V2.76.0 Software Upgrade Proposal",
"status": "PROPOSAL_STATUS_PASSED",
"submit_time": "2026-03-02T05:06:40.988793730Z",
"voting_end_time": "2026-03-02T17:06:40.988793730Z"
},
{
"id": "417",
"title": "V2.75.0 Software Upgrade Proposal",
"status": "PROPOSAL_STATUS_PASSED",
"submit_time": "2026-02-11T04:35:03.537939115Z",
"voting_end_time": "2026-02-12T04:35:03.537939115Z"
},
{
"id": "416",
"title": "V2.74.0 Software Upgrade Proposal",
"status":
…