/v1/polls
Governance polls with type, window, tags and the active/finished tally
Δοκιμάστε το ζωντανά
10 δωρεάν κλήσεις την ημέρα — χωρίς εγγραφή, χωρίς κλειδί API. Μέσω του gateway του oanor.
Δουλεύει. Πάρε ένα κλειδί API και χρησιμοποίησέ το στο έργο σου.
Λάβετε ένα κλειδί APIΑποσπάσματα κώδικα
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_..."}
)
Παράδειγμα απόκρισης
Πραγματική απόκριση αυτού του endpoint, από τον τελευταίο έλεγχο υγείας.
{
"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
…