/v1/executives
Executive votes (spells) with MKR support and execution status
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/makergov-api/v1/executives" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/makergov-api/v1/executives", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/makergov-api/v1/executives");
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/makergov-api/v1/executives",
headers={"x-oanor-key": "oanor_test_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"data": {
"note": "MakerDAO/Sky executive votes ('spells') — the on-chain proposals that change the protocol. mkr_support is the MKR backing the spell; executed is whether it has been scheduled/passed. Newest first; pass active=true for currently-active spells.",
"count": 20,
"source": "MakerDAO governance portal",
"executives": [
{
"key": "template-executive-vote-mkr-to-sky-upgrade-phase-one-adding-protego-to-the-chainlog-spark-proxy-spell-may-15-2025",
"date": "Thu May 15 2025 00:00:00 GMT+0000 (Coordinated Universal Time)",
"title": "MKR-to-SKY Upgrade Phase One, Adding Protego To the Chainlog, Spark Proxy Spell - May 15, 2025",
"active": false,
"address": "0x53222d00ffbFf48bD74BddDE5592B1B98793bB07",
"executed": true,
"datePassed": "2025-05-16T15:01:35.000Z",
"mkr_support": 9.9098,
"proposal_link": "https://raw.githubusercontent.com/sky-ecosystem/community/master/governance/votes/Executive%20vote%20-%20May%2015%2C%202025.md"
},
{
"key": "template-executive-vote-star2-allocation-system-updates-increase-gsm-pause-delay-add-emergency-spell-to-chainlog-top-up-of-the-integration-boost-launch-project-funding-spark-proxy-spell-star2-proxy-spell-april-30-2025",
"date": "Wed Apr 30 2025 00:00:00 GMT+0000 (Coordinated Universal Time)",
"title": "STAR2 Allocation System Updates, Increase GSM Pause Delay, Add Emergency Spell to Chainlog, Top-up of the Integration Boost, Launch Project Funding, Spark Proxy Spell, STAR2 Proxy Spell - April 30, 20",
"active": false,
"address": "0x039DCA7EBb7d7EEcFe9449211109A72DD988Bd81",
"executed": true,
"datePassed": "2025-05-01T14:36:11.000Z",
"mkr_support": 0.5132,
"proposal_link": "https://raw.githubusercontent.com/sky-ecosystem/community/master/governance/votes/Executive%20Vote%20-%20April%2030%2C%202025.md"
},
{
"key": "template-executive-vote-sp-beam-initialization-sky-token-rewards-rebalance-set-aave-lido-market-prime-market-ddm-dc-to-0-sbe-changes-launch-project-funding-spark-aave-revenue-share-payment-ad-compensation-atlas-core-development-payments-spark-proxy-spell-april-17-2025",
"date": "Thu Apr 17 2025 00:00:00 GMT+0000 (Coordinated Universal Time)",
"title": "SP-BEAM Initialization, Sky Token Rewards Rebalance, Set Aave Lido Market (Prime Market) DDM DC to 0, SBE Changes, Launch Project Funding, Spark-Aave Revenue Share Payment, AD Compensation, Atlas Core",
"active": false,
"address": "0xe4710c979485ecF2cBAD7C7C2a7Bc28c5c521749",
"executed": true,
"datePassed": "2025-04-18T14:14:59.000Z",
"mkr_support"
…