One validator by address: stake, rank, share, fee
API · /radixvalidators-api
Radix Validators & Network API
The Radix Network validator set and ledger status — Radix's proof-of-stake — live from the official public Radix Gateway API, no key, nothing cached. Radix is a layer-1 built for DeFi with its own asset-oriented ledger; its network is secured by validators who stake XRD and accept delegations. This is the first Radix reader in the marketplace. Rank the validators by staked XRD, each with its name, total stake, share of network stake, fee factor and whether it is in the current active set. Look up a single validator by its component address for its stake, rank, share and fee. And read the live ledger status — the current epoch and round, the ledger state version, the validator count and the total XRD staked across the network. The validator-and-staking layer for Radix wallets, staking dashboards, delegators and analytics. Live from mainnet.radixdlt.com.
API health
healthy- Uptime
- 100.00%
- Server probes · 24h
- Avg latency
- 226 ms
- Server probes · 24h
- Subscribers
- 3,483
- active
- Total calls
- 16
- last 7 days
Pricing
Pick a tier — billed monthly, cancel anytime.
Free
Free
- 7,250 calls / month
- 3 requests / second
- Hard cap (429 above quota, no overage)
- 7.25k calls/month
- 3 req/sec
- All endpoints
- No credit card
Starter
€9.60 /month
- 138,500 calls / month
- 9 requests / second
- Hard cap (429 above quota, no overage)
- 138.5k calls/month
- 9 req/sec
- Email support
Pro
€33.80 /month
- 803,000 calls / month
- 22 requests / second
- Hard cap (429 above quota, no overage)
- 803k calls/month
- 22 req/sec
- Priority support
Business
€91.50 /month
- 4,920,000 calls / month
- 55 requests / second
- Hard cap (429 above quota, no overage)
- 4.92M calls/month
- 55 req/sec
- Dedicated SLA
Built by
Related APIs
Other APIs with overlapping tags.
Number Base Converter API
Convert integers between any numeral systems with exact big-integer math. Pass a number and a from/to base (radix 2 to 36, arbitrarily large, signed) and the convert endpoint returns the result and the decimal value; common 0x, 0b and 0o prefixes are accepted when they match the base, and whitespace or underscores in the input are ignored. The bases endpoint shows a single number across binary, octal, decimal, hexadecimal, base32 and base36 at once, together with its bit length, byte length and sign. Everything is computed locally with BigInt, so values of any size are exact and deterministic. Ideal for low-level and embedded debugging, networking and bit-twiddling work, teaching number systems, and anywhere you juggle hex, binary and decimal. A numeral-base converter — distinct from the text-encoding toolkit (encoding: base64/base32/hex of bytes), the Elixir/Erlang Hex package registry (hex) and number-to-words (numberwords). No upstream key, no cache.
api.oanor.com/baseconvert-api
Bragg Diffraction API
X-ray crystallography maths as an API, computed locally and deterministically. The angle endpoint applies Bragg’s law, n·λ = 2·d·sinθ, to give the diffraction angle θ and the experimentally plotted 2θ from a crystal’s inter-planar spacing and the X-ray wavelength, defaulting to the common Cu Kα source at 0.15406 nm and reporting the highest observable order ⌊2d/λ⌋ — a 0.2 nm plane spacing diffracts Cu Kα to θ ≈ 22.65°, a 2θ peak near 45.3°. The spacing endpoint inverts the law, d = n·λ/(2·sinθ), reading the lattice spacing straight off a measured XRD peak — the everyday job of indexing a diffraction pattern, so a 2θ of 31.77° for table salt gives the 0.2814 nm (200) spacing. The wavelength endpoint solves λ = 2·d·sinθ/n to identify or calibrate the source. Lengths are entered in nanometres or ångström and angles in degrees, and any diffraction order n is supported. Everything is computed locally and deterministically, so it is instant and private. Ideal for materials-science, crystallography, mineralogy, XRD, semiconductor and solid-state-physics app developers, lattice-spacing and pattern-indexing tools, and laboratory software. Pure local computation — no key, no third-party service, instant. Live, nothing stored. 3 endpoints. This is reflection-geometry Bragg diffraction with the 2d factor; for optical double-slit and grating diffraction use a wave-optics diffraction API.
api.oanor.com/bragg-api
Warden Protocol Network API
Live on-chain data for Warden Protocol (chain-id warden_8765-1), an EVM-compatible Cosmos-SDK Layer 1 focused on intelligent on-chain applications and chain abstraction, with the WARD token. Read the current chain status — latest block height, block time and chain id — list the active validator set with each validator moniker, staked WARD, commission and jailed status, inspect the staking pool with bonded and not-bonded amounts and the bonded ratio, read the total WARD supply, and browse the latest on-chain governance proposals with their status and voting windows. WARD uses 18 decimals (EVM-style); all amounts are returned both in base units (award) and as whole WARD. Distinct from other Cosmos-chain APIs on the marketplace: this surfaces the Warden Protocol mainnet specifically.
api.oanor.com/warden-api
XION Network API
Live on-chain data for XION (chain-id xion-mainnet-1), a Cosmos-SDK Layer 1 built around a generalized abstraction layer with native account abstraction and stablecoin-denominated gas. Read the current chain status — latest block height, block time and chain id — list the active validator set with each validator moniker, staked XION, commission, delegator shares and jailed status, inspect the staking pool with bonded and not-bonded amounts and the bonded ratio, read the total XION supply, and browse the latest on-chain governance proposals with their status and voting windows. All XION amounts are returned both in base units (uxion) and as whole XION. Distinct from other Cosmos-chain APIs on the marketplace: this surfaces the XION mainnet specifically.
api.oanor.com/xion-api
Frequently asked questions
Quick answers about pricing, quotas, and integration.
How do I get an API key for Radix Validators & Network API?
What's the rate limit for Radix Validators & Network API?
How much does Radix Validators & Network API cost?
Can I cancel my subscription anytime?
Is Radix Validators & Network 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/radixvalidators-api/SOME_PATH \
-H "x-oanor-key: oanor_test_..."
const res = await fetch("https://api.oanor.com/radixvalidators-api/SOME_PATH", {
headers: { "x-oanor-key": "oanor_test_..." }
});
const data = await res.json();
$ch = curl_init("https://api.oanor.com/radixvalidators-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/radixvalidators-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.