/v1/votes
The individual votes cast on a proposal
Probeer het live
10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.
Het werkt. Haal een API-key op en gebruik hem in je project.
Verkrijg een API-sleutelCodefragmenten
curl "https://api.oanor.com/cardanoproposals-api/v1/votes" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/cardanoproposals-api/v1/votes", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/cardanoproposals-api/v1/votes");
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/cardanoproposals-api/v1/votes",
headers={"x-oanor-key": "oanor_test_..."}
)
Voorbeeldrespons
Een echte respons van dit endpoint, vastgelegd bij de laatste health check.
{
"data": {
"note": "The individual votes cast on one governance action, newest first — each with the voter's role (DRep, SPO or ConstitutionalCommittee), the voter id and the decision (Yes / No / Abstain). Omit proposal_id to use the latest proposal.",
"count": 25,
"votes": [
{
"vote": "Yes",
"meta_url": null,
"voter_id": "drep1y269ehxj30k4vfzfc2z84v0xykd3amuy2xn0kv9zf8rhcec2fg2jr",
"block_time": 1781451047,
"voter_role": "DRep"
},
{
"vote": "Yes",
"meta_url": null,
"voter_id": "drep1ygeyfh8nm03dnl5a2hxdtv09pu7uhep9l0cpg0zpr60jqys05cku2",
"block_time": 1781450515,
"voter_role": "DRep"
},
{
"vote": "Abstain",
"meta_url": "https://most-brass-sun.quicknode-ipfs.com/ipfs/QmZM7mEEDoF26NTe1gbnDcZg5w8aaDLueaQgf3P7qb29Fc",
"voter_id": "drep1ygpzpm4q38rfueu2use5te4ylykn4smvs7cxj2ggvktcjkqpxhvf4",
"block_time": 1781446329,
"voter_role": "DRep"
},
{
"vote": "Yes",
"meta_url": null,
"voter_id": "drep1yt9rp59j57rxev92qzsjyxpnyul8gc94fny4af32hr35l0qh9ahj8",
"block_time": 1781446273,
"voter_role": "DRep"
},
{
"vote": "Yes",
"meta_url": null,
"voter_id": "drep1y2yemxvjptae0j7qws0emn4lv5eh73fkp43f4p3gla3msackq60pj",
"block_time": 1781396429,
"voter_role": "DRep"
},
{
"vote": "Yes",
"meta_url": "https://most-brass-sun.quicknode-ipfs.com/ipfs/QmUD2XFwxTP9uybXGRAuMpSnunmeTto1p94bBtAD6QWqH8",
"voter_id": "drep1y2hlgh9600zjlt39dh54z7z8d65kahneck8yhh7ugmzc9as0xrzqd",
"block_time": 1781388078,
"voter_role": "DRep"
},
{
"vote": "Yes",
"meta_url": null,
"voter_id": "drep1yf94hp0xetd87e5stlxwrtlqwjq6qhqx6zfdu94wdr5dfagp38nd4",
"block_time": 1781381460,
"voter_role": "DRep"
},
{
"vote": "No",
"meta_url": null,
"voter_id": "drep1ygsrvdukj9unnxue5ffmrkjr9ve7yxz3wvccdstapmw696q8g2w9u",
"block_time": 1781368585,
"voter_role": "DRep"
},
{
"vote": "Yes",
"meta_url": null,
"voter_id": "drep1y296zyw2r8rcsy7slkd7l687hh88xc0m6ac2y3h2r3mvsdgc9q6yy",
"block_time": 1781367610,
"voter_role": "DRep"
},
{
"vote": "Yes",
"meta_url": null,
"voter_id": "drep1yghm3canzwv736un9usqrxpfvxrm6
…