/v1/meta
Service metadata
Provalo dal vivo
10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.
Funziona. Prendi una chiave API e usala nel tuo progetto.
Ottieni una chiave APIFrammenti di codice
curl "https://api.oanor.com/makergov-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/makergov-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/makergov-api/v1/meta");
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/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Risposta di esempio
Una risposta reale di questo endpoint, acquisita dall'ultimo health check.
{
"data": {
"sample": {
"mkr_support": 9.9098,
"latest_executive": "MKR-to-SKY Upgrade Phase One, Adding Protego To the Chainlog, Spark Proxy Spell - May 15, 2025"
},
"source": "public MakerDAO governance portal API (vote.makerdao.com/api), keyless",
"service": "makergov-api",
"endpoints": {
"GET /v1/meta": "This document.",
"GET /v1/polls": "Governance polls with type, window, tags and the active/finished tally (limit).",
"GET /v1/delegates": "Recognized delegates ranked by delegated MKR, with status and participation (limit).",
"GET /v1/executives": "Executive votes (spells) with MKR support and execution status (limit, active)."
},
"description": "Read MakerDAO/Sky governance live from the public governance-portal API: executive votes ('spells') with their MKR support and execution status, governance polls with the portal's type breakdown, and recognized MKR delegates ranked by delegated MKR. The governance layer for MakerDAO/Sky wallets, governance dashboards and delegates. Live, short cache only.",
"upstream_status": "ok"
},
"meta": {
"timestamp": "2026-06-14T08:03:45.904Z",
"request_id": "be18ecf4-83d0-499c-aa31-7f0d25a50667"
},
"status": "ok",
"message": "Meta",
"success": true
}