Skip to content
GET /v1/status

Live Solana network dashboard

Try it live

10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.

Custom headers (optional)
api.oanor.com/solananetwork-api

It works. Grab an API key and use it in your project.

Get an API key

Code snippets

curl "https://api.oanor.com/solananetwork-api/v1/status" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/solananetwork-api/v1/status", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/solananetwork-api/v1/status");
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$out = curl_exec($ch);
import requests
requests.get(
    "https://api.oanor.com/solananetwork-api/v1/status",
    headers={"x-oanor-key": "oanor_test_..."}
)

Example response

A real response from this endpoint, captured by the latest health check.

{
    "data": {
        "note": "Live Solana network dashboard: the current staking epoch and how far through it the chain is (epoch_progress_pct), with an estimate of the hours left until the next epoch, the current slot and block height, the lifetime transaction count, the current transactions-per-second, the average slot time, and the RPC node health. Live, cached ~30s.",
        "epoch": 986,
        "health": "ok",
        "source": "Public Solana JSON-RPC (getEpochInfo, getRecentPerformanceSamples, getHealth), keyless",
        "slot_index": 93765,
        "current_tps": 3497,
        "block_height": 404125899,
        "absolute_slot": 426045765,
        "slots_in_epoch": 432000,
        "slots_remaining": 338235,
        "avg_slot_time_ms": 405,
        "epoch_progress_pct": 21.7,
        "lifetime_transaction_count": 520179670517,
        "est_time_to_next_epoch_hours": 38.1
    },
    "meta": {
        "timestamp": "2026-06-12T19:36:00.240Z",
        "request_id": "711cf4c6-69cd-4ad2-9c6e-f266e1bbaa97"
    },
    "status": "ok",
    "message": "Status retrieved successfully",
    "success": true
}