/v1/governance
Recent governance proposals
Essayez-le en direct
10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.
Ça marche. Récupérez une clé API et utilisez-la dans votre projet.
Obtenez une clé APIExtraits de code
curl "https://api.oanor.com/sifchain-api/v1/governance" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/sifchain-api/v1/governance", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/sifchain-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/sifchain-api/v1/governance",
headers={"x-oanor-key": "oanor_test_..."}
)
Exemple de réponse
Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.
{
"data": {
"chain": "Sifchain",
"count": 15,
"symbol": "ROWAN",
"proposals": [
{
"id": "156",
"title": "Revive Sentinelhub Client",
"status": "PROPOSAL_STATUS_PASSED",
"submit_time": "2025-01-24T16:43:21.492925570Z",
"voting_end_time": "2025-01-26T16:43:21.492925570Z"
},
{
"id": "155",
"title": "Revive Juno Client",
"status": "PROPOSAL_STATUS_PASSED",
"submit_time": "2025-01-20T05:53:21.945708078Z",
"voting_end_time": "2025-01-22T05:53:21.945708078Z"
},
{
"id": "154",
"title": "v1.4.1",
"status": "PROPOSAL_STATUS_PASSED",
"submit_time": "2024-05-21T19:24:27.015797570Z",
"voting_end_time": "2024-05-23T19:24:27.015797570Z"
},
{
"id": "153",
"title": "Sifchain Evolution Proposal: Council Restructuring, New Roadmap, and Strategic Financial Utilization for Enhanced Ecosystem Growth",
"status": "PROPOSAL_STATUS_PASSED",
"submit_time": "2024-01-05T10:57:48.487630566Z",
"voting_end_time": "2024-01-07T10:57:48.487630566Z"
},
{
"id": "149",
"title": "v1.4.0 (fix plan name)",
"status": "PROPOSAL_STATUS_PASSED",
"submit_time": "2023-12-16T06:45:18.746487762Z",
"voting_end_time": "2023-12-18T06:45:18.746487762Z"
},
{
"id": "148",
"title": "v1.4.0",
"status": "PROPOSAL_STATUS_REJECTED",
"submit_time": "2023-12-16T06:14:53.528846937Z",
"voting_end_time": "2023-12-18T06:14:53.528846937Z"
},
{
"id": "147",
"title": "v1.3.1-beta",
"status": "PROPOSAL_STATUS_PASSED",
"submit_time": "2023-12-05T17:41:12.883099653Z",
"voting_end_time": "2023-12-07T17:41:12.883099653Z"
},
{
"id": "146",
"title": "v1.3.0-beta",
"status": "PROPOSAL_STATUS_PASSED",
"submit_time": "2023-12-03T00:49:50.560297239Z",
"voting_end_time": "2023-12-05T00:49:50.560297239Z"
},
{
"id": "145",
"title": "Adjust the upper limit for block size from 21 MB to 1 MB",
"status": "PROPOSAL_STATUS_PASSED",
"submit_time": "2023-11-08T04:51:21.355986804Z",
"voting_end_time": "2023-11-10T04:51:21.355986804Z"
},
{
"id": "144",
"title": "v1.2.0-beta",
"status": "PROPOSAL_STATUS_PASSED",
…