/v1/delegates
Recognized delegates ranked by delegated MKR with status and participation
Essayez-le en direct
10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.
Ça marche. Récupérez une clé API et utilisez-la dans votre projet.
Obtenez une clé APIExtraits de code
curl "https://api.oanor.com/makergov-api/v1/delegates" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/makergov-api/v1/delegates", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/makergov-api/v1/delegates");
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/delegates",
headers={"x-oanor-key": "oanor_test_..."}
)
Exemple de réponse
Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.
{
"data": {
"note": "Recognized MakerDAO/Sky delegates ranked by delegated MKR, with each one's status (aligned/shadow), delegator count, last vote and how many polls/executives they have supported.",
"count": 10,
"shadow": 17,
"source": "MakerDAO governance portal",
"aligned": 10,
"delegates": [
{
"name": "BLUE",
"status": "aligned",
"expired": false,
"mkr_delegated": 8.984,
"owner_address": "0x73056e27d9cc08f963d41664c705392f305cfe7d",
"last_vote_date": "2025-05-13T16:45:11.000Z",
"delegator_count": 5,
"execs_supported": null,
"polls_supported": 1,
"vote_delegate_address": "0xe1ff7ecf038900dd14a1e7e3a8ccf23f71f6a1c2"
},
{
"name": "Cloaky",
"status": "aligned",
"expired": false,
"mkr_delegated": 0.5083,
"owner_address": "0xd352a360cccb06fb23a8681c44e6b12a999ae7a0",
"last_vote_date": "2025-05-13T16:57:01.000Z",
"delegator_count": 6,
"execs_supported": null,
"polls_supported": 2,
"vote_delegate_address": "0xb02e05c257291acd65a527227aca6b7662e047f4"
},
{
"name": "PBG",
"status": "aligned",
"expired": false,
"mkr_delegated": 0.4126,
"owner_address": "0x1989bc38403a8c7f3c9a6699c5366d9af6301dd6",
"last_vote_date": "2026-06-08T19:18:24.000Z",
"delegator_count": 1,
"execs_supported": null,
"polls_supported": 1,
"vote_delegate_address": "0xcfe1c10b90dc49a063742b6eb29d1bdc7e722aa2"
},
{
"name": "JuliaChang",
"status": "aligned",
"expired": false,
"mkr_delegated": 0.0049,
"owner_address": "0xd0b44469d0f230fc67d2e6d2e8d239699ed76bb5",
"last_vote_date": "2025-05-14T04:02:38.000Z",
"delegator_count": 2,
"execs_supported": null,
"polls_supported": 2,
"vote_delegate_address": "0x5d4a96afadb5505a8ff21ddeca2baf3a63301396"
},
{
"name": "Tango",
"status": "aligned",
"expired": false,
"mkr_delegated": 0.0007,
"owner_address": "0x3508c69fa84d92c7eef9e09288ea8bf8dfc46a05",
"last_vote_date": "2026-06-01T19:21:53.000Z",
"delegator_count": 1,
"execs_supported": null,
"polls_supported": 0,
"vote_delegate_address": "0x4e4393f93ac7ba34648a82ea2248d9bdbb1ff7e5"
},
{
"name": "WBC",
…