API Command Deck
One surface for wallets, explorers, AI orchestrators, and monitoring stacks. Stable schemas, generous rate limits, and ready-to-use cURL / TypeScript templates.
99.95%
Core uptime · rolling 30 days
52 ms
Median latency · PoP · Frankfurt
1.8M
Requests / day · miners + explorers
Blockchain Core
Stats, blocks, and RPC for explorers, wallets, and validators.
/blockchain/stats45 ms avgNetwork height, supply, fee window, and hash rate snapshot.
/blockchain/blocks?limit=5065 ms avgPaginated block feed with miner, reward, and difficulty metadata.
/json-rpc70 ms avgEthereum-compatible RPC for wallets and orchestration bots.
Mining & Pool
Stratum telemetry, worker balance queries, and payout history.
/pool/workers/{wallet}58 ms avgActive workers, hash rate per algorithm, temperature envelope.
/pool/payouts?wallet={wallet}62 ms avgHistorical payouts, maturity, and consciousness bonus data.
wss://www.zionterranova.com:8010/metricssub-secondLive stratum + AI orchestrator metrics streamed every 5 seconds.
Observability & AI
Health, AI selector recommendations, and alert hooks.
/health30 ms avgFull service heartbeat with version, block lag, and dependency checks.
/ai/recommendation?hardware=gpu48 ms avgAI selector output with profitability, power draw, and rotation hints.
/alerts/webhook90 ms avgRegister a signed webhook for incidents, payouts, and DAO votes.
Quickstart snippets
curl -X GET http://www.zionterranova.com:8001/blockchain/stats -H 'Accept: application/json'const res = await fetch('http://www.zionterranova.com:8001/json-rpc', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
'x-zion-key': process.env.ZION_KEY as string,
},
body: JSON.stringify({
jsonrpc: '2.0',
id: 1,
method: 'zion_getBlockByHeight',
params: [102938, true],
}),
});
const data = await res.json();Onboarding checklist
1 · Authenticate
GET routes are open. For POST/PUT include x-zion-key in headers; rotate keys every 30 days.
2 · Choose transport
HTTPS for RPC/REST, WebSockets for stratum + metrics. All servers support HTTP/2.
3 · Pin environment
Sandbox mirrors production at https://api-sandbox.zionterranova.com with testnet data.
Ready to wire the mesh?
Deploy the SDKs from GitHub, watch live health, and ping the team in docs if you need additional scopes.