Network status (latest block, chain id, client version)
API · /sapphire-api
Oasis Sapphire API
Real-time on-chain data for Oasis Sapphire (chain-id 23294) — the confidential EVM-compatible ParaTime on the Oasis Network that brings on-chain privacy to smart contracts, with ROSE as its native token. Query live network status (latest block height, network id, client version), fetch any block by height or the latest one (timestamp, transaction count, gas used / limit, base fee, miner), read the current gas price in wei and gwei, and look up the native ROSE balance and transaction count of any address. A keyless, no-account JSON wrapper over the canonical Sapphire JSON-RPC node — decoded from hex into plain decimals and human-readable ROSE so you do not have to. Ideal for explorers, wallets, dashboards, gas estimators and analytics on Oasis Sapphire.
API health
healthy- Uptime
- 100.00%
- Server probes · 24h
- Avg latency
- 171 ms
- Server probes · 24h
- Subscribers
- 4,051
- active
- Total calls
- 50
- last 7 days
Pricing
Pick a tier — billed monthly, cancel anytime.
Free
Free
- 4,300 calls / month
- 3 requests / second
- Hard cap (429 above quota, no overage)
- 4.3k calls/month
- 3 req/sec
- All 5 endpoints
- No credit card
Basic
€12.70 /month
- 57,000 calls / month
- 10 requests / second
- Hard cap (429 above quota, no overage)
- 57k calls/month
- 10 req/sec
- Status, blocks, gas & balances
- Email support
Pro
€33.40 /month
- 214,000 calls / month
- 25 requests / second
- Hard cap (429 above quota, no overage)
- 214k calls/month
- 25 req/sec
- Higher throughput
- Priority support
Mega
€72.60 /month
- 896,000 calls / month
- 60 requests / second
- Hard cap (429 above quota, no overage)
- 896k calls/month
- 60 req/sec
- Production scale
- Dedicated SLA
Built by
Related APIs
Other APIs with overlapping tags.
Monero Network API
Live network and blockchain data from Monero (XMR), the leading privacy cryptocurrency — no key, nothing stored. The network endpoint returns the live chain state: block height, difficulty, an estimated network hashrate, the mempool size, peer connections, hard-fork version and median block size. The block endpoint returns a block by height — its hash, size, timestamp and transaction count. The mempool endpoint returns the current unconfirmed-transaction pool with a sample of pending transactions and their fees. Data comes live from a public Monero blockchain-explorer node. Monero is privacy-preserving, so individual balances and amounts are unobservable — this is network/aggregate data, distinct from the exchange-ticker, market and transparent-chain APIs in the catalogue. Built for Monero dashboards, network monitors, mining tooling and explorers.
api.oanor.com/monero-api
Mask API
Mask a value for safe display. The mask endpoint keeps the first and/or last few characters visible and replaces the rest with a mask character — so a card becomes ••••••••••••1111 and an API token becomes sk**********3456 — and can keep separators (spaces and dashes) intact so the value keeps its shape. A dedicated email masker hides the local part (and optionally the domain) while keeping the address recognisable, e.g. j•••••••@example.com. Choose how many characters to reveal and which mask character to use. Perfect for showing the last four digits of a card, partially hiding emails and phone numbers, and masking tokens and account numbers in UIs, receipts and logs. Pure local computation — no key, no third-party service, instant. Live, nothing stored. 3 endpoints. This masks a known value for display; to find and redact PII inside free text, use a redaction API.
api.oanor.com/mask-api
Redact API
Detect and redact personally identifiable information (PII) in free text. It finds email addresses, phone numbers, credit-card numbers (Luhn-validated to cut false positives), IPv4 and IPv6 addresses, US Social Security numbers and IBANs, and masks each one — with a per-type label like [EMAIL], a fixed replacement string, or a single character repeated to the original length. A detect endpoint returns every match with its type and position without changing the text. Perfect for scrubbing logs and support transcripts, sanitising data before sharing or sending to a third party, and privacy and compliance pre-checks. Pure local computation — text never leaves the server, no key, no third party, instant; up to 200,000 characters via POST. Live, nothing stored. 3 endpoints. Regex-based and best-effort — review before relying on it for legal compliance. Distinct from sentiment, profanity and general text tooling.
api.oanor.com/redact-api
Tor Network API
Look up the live Tor network as an API — powered by the Tor Project's official Onionoo service and the canonical bulk exit-node list. Check whether any IPv4 or IPv6 address is a Tor relay (is_tor_relay) and whether it is an exit node that clients leave the network through (is_exit_node, corroborated against the bulk exit list), returning the full matching relay record(s): nickname, fingerprint, flags, country, autonomous system, advertised bandwidth, exit-policy summary and first/last-seen dates. Or search the public relay list by nickname, fingerprint, IP, country or flag (Exit, Guard, Fast, Stable…) with paging. Built for fraud and abuse triage, login-risk scoring, comment- and registration-filtering, and network research — knowing at a glance whether a connection originates from the Tor network. Range data is fetched live from the Tor Project, so it is always current. A Tor-network lookup — distinct from cloud/CDN attribution (cloudips), IP geolocation (ipgeo), ASN/BGP ownership (asn, ripestat) and open-port exposure (internetdb). No upstream key, no cache.
api.oanor.com/tor-api
Frequently asked questions
Quick answers about pricing, quotas, and integration.
How do I get an API key for Oasis Sapphire API?
What's the rate limit for Oasis Sapphire API?
How much does Oasis Sapphire API cost?
Can I cancel my subscription anytime?
Is Oasis Sapphire 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/sapphire-api/SOME_PATH \
-H "x-oanor-key: oanor_test_..."
const res = await fetch("https://api.oanor.com/sapphire-api/SOME_PATH", {
headers: { "x-oanor-key": "oanor_test_..." }
});
const data = await res.json();
$ch = curl_init("https://api.oanor.com/sapphire-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/sapphire-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.