List the stake-pool registry
API · /cardanopools-api
Cardano Stake Pool API
Cardano's stake-pool operators (SPOs) — live from the public Koios indexer, no key. Cardano is delegated proof-of-stake: ADA holders delegate to stake pools run by independent operators, who mint blocks and earn rewards. The Cardano account reader resolves which pool a single stake account delegates to, but there is no registry of the pools themselves. This opens it. List every pool the chain knows with its operator margin, fixed cost and pledge; look up one pool in full — its registered identity (ticker, name, homepage, description) from off-chain metadata plus its on-chain economics: live delegated stake, saturation, delegator count, lifetime blocks and status; and read a pool's Mark / Set / Go stake snapshots, the three-epoch pipeline Cardano uses to compute rewards. The operator layer for Cardano wallets, staking dashboards, pool explorers and analytics. Distinct from the Cardano account reader (per-account delegation), the chain-economics reader, the native-token registry and the DRep governance reader. Live from the indexer; short cache only.
API health
healthy- Uptime
- 100.00%
- Server probes · 24h
- Avg latency
- 1155 ms
- Server probes · 24h
- Subscribers
- 3,534
- active
- Total calls
- 20
- last 7 days
Pricing
Pick a tier — billed monthly, cancel anytime.
Free
Free
- 8,800 calls / month
- 3 requests / second
- Hard cap (429 above quota, no overage)
- 8.8k calls/month
- 3 req/sec
- All endpoints
- No credit card
Starter
€10.40 /month
- 162,000 calls / month
- 10 requests / second
- Hard cap (429 above quota, no overage)
- 162k calls/month
- 10 req/sec
- Email support
Pro
€35.40 /month
- 870,000 calls / month
- 25 requests / second
- Hard cap (429 above quota, no overage)
- 870k calls/month
- 25 req/sec
- Priority support
Scale
€97.00 /month
- 5,600,000 calls / month
- 60 requests / second
- Hard cap (429 above quota, no overage)
- 5.6M calls/month
- 60 req/sec
- Dedicated SLA
Built by
Related APIs
Other APIs with overlapping tags.
Cardano Governance Action API
Cardano's on-chain governance actions (proposals) of the Conway era — live from the public Koios indexer, no key. Anyone can submit a governance action — a treasury withdrawal, a protocol-parameter change, a hard-fork initiation, a new constitutional committee, a no-confidence motion — which DReps, stake pools and the constitutional committee then vote on. The Cardano DRep reader surfaces the voters; this is the other side of governance: the proposals themselves. List the governance actions with their type, deposit, return address and the lifecycle epochs they were proposed / ratified / enacted / dropped / expired, with a derived status; read a proposal's live voting tally broken down by the three governance bodies — DRep, SPO and committee Yes / No / Abstain vote counts, voting power (in ADA) and percentages; and read the individual votes cast on it, each with the voter's role and decision. The governance-action layer for Cardano wallets, voting tools, governance explorers and analytics. Distinct from the DRep governance reader (the voters), the stake-pool reader, the chain-economics reader and the native-token registry. Live from the indexer; short cache only.
api.oanor.com/cardanoproposals-api
Cardano DRep Governance API
Cardano's on-chain governance body — the DReps (Delegated Representatives) of the Voltaire era / CIP-1694 — live from the public Koios indexer, no key. In the Conway era ADA holders delegate their voting power to DReps, who vote on governance actions; the Cardano account reader resolves a single stake account's DRep choice, but there is no registry of the DReps themselves. This opens it. List every DRep with its registration and native-script status; look up one DRep in full — its live delegated voting power (the ADA whose vote it casts), its 500 ADA registration deposit, whether the mandate is still active and the epoch it expires; read the governance actions a DRep has voted on with each Yes / No / Abstain decision; and track the network-wide DRep population and total active voting power per epoch. The governance layer for Cardano wallets, voting tools, DRep explorers and analytics. Distinct from the Cardano account reader (per-account vote), the chain-economics reader and the native-token registry. Live from the indexer; short cache only.
api.oanor.com/cardanodreps-api
Cardano Native Token Registry API
Cardano native tokens, live from the public Koios API — no key, nothing cached. On Cardano every token is a "native asset" identified by a policy id plus an asset name, minted under a Plutus or native minting policy. The Cardano on-chain reader lists the tokens held by an account, but there is no token registry in the marketplace; this opens it. Browse the verified token registry — the curated tokens that have submitted off-chain metadata, with their ticker, decimals, description and logo. Look up a single token in full with its on-chain facts: the asset fingerprint, total supply, how many times it has been minted and burned, and when it was first created. And list every native asset minted under a given policy id — one policy can mint a single fungible token or a whole NFT collection. The token layer for Cardano wallets, DEXs, token explorers and analytics. Live from api.koios.rest.
api.oanor.com/cardanotokens-api
Cardano Chain API
Read live Cardano chain economics and epoch data from the public Koios indexer — no key — focused on the network-wide view that stake-account and asset readers miss. The tip endpoint returns the chain head: the current epoch, block height and slot. The epoch endpoint returns any epoch's activity — blocks produced, total transactions, total output and fees (in ADA) and the active stake securing it, with its start and end. And the supply endpoint returns Cardano's ADA monetary breakdown: total supply, circulating, reserves (still to be issued), treasury (the on-chain governance fund) and the reward pot, against the fixed 45-billion-ADA cap. The chain-economics layer every Cardano wallet, explorer, staker and analytics tool needs. Live from the indexer; short cache only.
api.oanor.com/cardanochain-api
Frequently asked questions
Quick answers about pricing, quotas, and integration.
How do I get an API key for Cardano Stake Pool API?
What's the rate limit for Cardano Stake Pool API?
How much does Cardano Stake Pool API cost?
Can I cancel my subscription anytime?
Is Cardano Stake Pool API GDPR-compliant?
Pick an endpoint from the list on the left to see its details and try it.
Code snippets
Sign up to get an API key, then call any path under your slug.
curl https://api.oanor.com/cardanopools-api/SOME_PATH \
-H "x-oanor-key: oanor_test_..."
const res = await fetch("https://api.oanor.com/cardanopools-api/SOME_PATH", {
headers: { "x-oanor-key": "oanor_test_..." }
});
const data = await res.json();
$ch = curl_init("https://api.oanor.com/cardanopools-api/SOME_PATH");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
$response = curl_exec($ch);
import requests
r = requests.get(
"https://api.oanor.com/cardanopools-api/SOME_PATH",
headers={"x-oanor-key": "oanor_test_..."},
)
print(r.json())
Ratings
Sign in to rate.
No reviews yet.
Discussion
Ask questions, share usage tips, get answers from the provider and other developers. Public — anyone can read.
Sign in to start a thread or reply.
Sign inNew thread
·
-
Provider answer
🔒 This thread is locked — no new replies.
-
·
- No threads yet — start the discussion.
Support
Private 1:1 support with the provider — billing questions, integration issues, account problems. Only you and the provider team can see these threads.
Sign in to open a support ticket.
Sign inOpen new ticket
Describe what you need help with. The provider team gets an email and replies on the ticket page.
-
·
Urgent - No tickets yet for this API.