Skip to content
GET /v1/network

Live Celestia chain economy: supply, bonded, staking ratio

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/celestia-api

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

Get an API key

Code snippets

curl "https://api.oanor.com/celestia-api/v1/network" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/celestia-api/v1/network", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/celestia-api/v1/network");
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/celestia-api/v1/network",
    headers={"x-oanor-key": "oanor_test_..."}
)

Example response

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

{
    "data": {
        "chain": "celestia",
        "source": "Celestia",
        "chain_id": "celestia",
        "tip_time": "2026-06-10T14:01:28.104462034Z",
        "bonded_tia": 506936382.416317,
        "tip_height": 11470462,
        "native_token": "TIA",
        "total_supply_tia": 1170342566.687279,
        "staking_ratio_pct": 43.32
    },
    "meta": {
        "timestamp": "2026-06-10T14:01:35.313Z",
        "request_id": "2cd9fd8d-c841-4b7a-9031-0c3259697fc5"
    },
    "status": "ok",
    "message": "Network state retrieved successfully",
    "success": true
}