Ir al contenido
GET /v1/meta

Service metadata

Pruébalo en vivo

10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.

Encabezados personalizados (opcional)
api.oanor.com/makergov-api

Funciona. Consigue una clave API y úsala en tu proyecto.

Obtener una clave API

Fragmentos de código

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_..."}
)

Respuesta de ejemplo

Una respuesta real de este endpoint, capturada en la última comprobación de estado.

{
    "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
}