API v2.9 · Orion Mesh

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.

Port 8001
GET/blockchain/stats45 ms avg

Network height, supply, fee window, and hash rate snapshot.

GET/blockchain/blocks?limit=5065 ms avg

Paginated block feed with miner, reward, and difficulty metadata.

POST/json-rpc70 ms avg

Ethereum-compatible RPC for wallets and orchestration bots.

Mining & Pool

Stratum telemetry, worker balance queries, and payout history.

Port 8010
GET/pool/workers/{wallet}58 ms avg

Active workers, hash rate per algorithm, temperature envelope.

GET/pool/payouts?wallet={wallet}62 ms avg

Historical payouts, maturity, and consciousness bonus data.

WSwss://www.zionterranova.com:8010/metricssub-second

Live stratum + AI orchestrator metrics streamed every 5 seconds.

Observability & AI

Health, AI selector recommendations, and alert hooks.

Port 8025
GET/health30 ms avg

Full service heartbeat with version, block lag, and dependency checks.

GET/ai/recommendation?hardware=gpu48 ms avg

AI selector output with profitability, power draw, and rotation hints.

POST/alerts/webhook90 ms avg

Register a signed webhook for incidents, payouts, and DAO votes.

Quickstart snippets

cURL quick ping
curl -X GET   http://www.zionterranova.com:8001/blockchain/stats   -H 'Accept: application/json'
TypeScript fetch
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.