Ir al contenido
GET /v1/polls

Governance polls with type, window, tags and the active/finished tally

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/polls" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/makergov-api/v1/polls", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/makergov-api/v1/polls");
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/polls",
    headers={"x-oanor-key": "oanor_test_..."}
)

Respuesta de ejemplo

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

{
    "data": {
        "note": "MakerDAO/Sky governance polls (signal votes that gauge community sentiment), newest first, with each poll's type, voting window, tags and options. total/active/finished come from the portal's own tally.",
        "count": 20,
        "polls": [
            {
                "tags": [
                    "high-impact",
                    "endgame"
                ],
                "type": "single-choice",
                "title": "Atlas Edit Weekly Cycle Proposal - May 12, 2025",
                "options": [
                    "Abstain",
                    "Yes",
                    "No"
                ],
                "poll_id": 1246,
                "summary": "This Atlas Edit 1) clarifies SKY staking parameters, 2) adds documentation regarding approval of the upgrade from MKR to SKY, 3) updates documentation regarding legacy brands, 4) includes new Vote Delegate Factory contract in MKR to SKY upgrade plan.",
                "end_date": "2025-05-15T16:00:00.000Z",
                "start_date": "2025-05-12T16:00:00.000Z"
            },
            {
                "tags": [
                    "high-impact",
                    "spark"
                ],
                "type": "single-choice",
                "title": "SparkLend Ethereum - Adjust DAI Interest Rate Model - May 12, 2025",
                "options": [
                    "Abstain",
                    "Yes",
                    "No"
                ],
                "poll_id": 1247,
                "summary": "Signal your support or opposition to the proposed adjustments to the DAI Interest Rate Model for SparkLend on Mainnet.",
                "end_date": "2025-05-15T16:00:00.000Z",
                "start_date": "2025-05-12T16:00:00.000Z"
            },
            {
                "tags": [
                    "high-impact",
                    "spark"
                ],
                "type": "single-choice",
                "title": "SparkLend Ethereum - Adjust USDS Interest Rate Model - May 12, 2025",
                "options": [
                    "Abstain",
                    "Yes",
                    "No"
                ],
                "poll_id": 1248,
                "summary": "Signal your support or opposition to the proposed adjustments to the USDS Interest Rate Model for SparkLend on Mainnet.",
                "end_date": "2025-05-15T16:00:00.000Z",
                "start_date": "2025-05-12T16:00:00.000Z"
            },
            {
                "tags": [
                    "high-impact",
                    "spark"
                ],
                "type": "single-choice",
                "title": "SparkLend Ethereum - Reduce WBTC Liquidation Threshold - May 12, 2025",
                "options": [
                    "Abstain",
                    "Yes",
                    "No"
                ],
                "poll_id": 1249,
                "summary": "Signal your support or opposition to reducing the WBTC 
…