/v1/meta
Service metadata
Provalo dal vivo
10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.
Funziona. Prendi una chiave API e usala nel tuo progetto.
Ottieni una chiave APIFrammenti di codice
curl "https://api.oanor.com/cardanoproposals-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/cardanoproposals-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/cardanoproposals-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/cardanoproposals-api/v1/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Risposta di esempio
Una risposta reale di questo endpoint, acquisita dall'ultimo health check.
{
"data": {
"sample": {
"status": "active",
"latest_type": "TreasuryWithdrawals"
},
"source": "public Koios API (api.koios.rest), keyless",
"service": "cardanoproposals-api",
"endpoints": {
"GET /v1/meta": "This document.",
"GET /v1/votes": "The individual votes cast on a proposal (proposal_id; omit for the latest).",
"GET /v1/summary": "A proposal's voting tally by DRep / SPO / committee (proposal_id; omit for the latest).",
"GET /v1/proposals": "Governance actions: type, deposit, lifecycle epochs (limit, offset)."
},
"description": "Read Cardano's on-chain governance actions (Conway era) live from the public Koios API: list the proposals with their type, deposit and lifecycle epochs, read a proposal's live voting tally broken down by DRep, SPO and committee power, and read the individual votes cast on it. The governance-action layer for Cardano wallets, voting tools and governance explorers. Live, short cache only.",
"upstream_status": "ok"
},
"meta": {
"timestamp": "2026-06-14T17:04:17.883Z",
"request_id": "5c03afba-3a4d-494d-b5d7-91f0a9a7d671"
},
"status": "ok",
"message": "Meta",
"success": true
}