/v1/meta
Service metadata
Δοκιμάστε το ζωντανά
10 δωρεάν κλήσεις την ημέρα — χωρίς εγγραφή, χωρίς κλειδί API. Μέσω του gateway του oanor.
Δουλεύει. Πάρε ένα κλειδί API και χρησιμοποίησέ το στο έργο σου.
Λάβετε ένα κλειδί APIΑποσπάσματα κώδικα
curl "https://api.oanor.com/cardanodreps-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/cardanodreps-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/cardanodreps-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/cardanodreps-api/v1/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Παράδειγμα απόκρισης
Πραγματική απόκριση αυτού του endpoint, από τον τελευταίο έλεγχο υγείας.
{
"data": {
"sample": {
"dreps": 890,
"latest_epoch": 637
},
"source": "public Koios API (api.koios.rest), keyless",
"service": "cardanodreps-api",
"endpoints": {
"GET /v1/drep": "One DRep in full: voting power, deposit, active flag, expiry (drep_id; omit for the first registered).",
"GET /v1/meta": "This document.",
"GET /v1/dreps": "The DRep set: id, registration and script status (limit, offset).",
"GET /v1/votes": "A DRep's governance-action votes, Yes/No/Abstain (drep_id; omit for the first registered).",
"GET /v1/summary": "DRep count and total active voting power per epoch (epoch_no optional; omit for the recent trend)."
},
"description": "Read Cardano's DRep governance (Voltaire / CIP-1694) live from the public Koios API: list every Delegated Representative, look up one DRep's live delegated voting power, deposit and expiry, read the governance actions it has voted on (Yes/No/Abstain), and track network-wide DRep power and population per epoch. The governance layer for Cardano wallets, voting tools and DRep explorers. Live, short cache only.",
"upstream_status": "ok"
},
"meta": {
"timestamp": "2026-06-14T17:04:24.212Z",
"request_id": "80ecaddd-4b8e-4623-a237-7eb773dcc9a5"
},
"status": "ok",
"message": "Meta",
"success": true
}