Zum Inhalt springen
GET /v1/meta

Service metadata and endpoint catalog

Live testen

10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.

Eigene Header (optional)
api.oanor.com/celestia-api

Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.

API-Key holen

Code-Snippets

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

Beispiel-Response

Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.

{
    "data": {
        "source": "Celestia Cosmos REST API (celestia-rest.publicnode.com, live)",
        "service": "celestia-api",
        "endpoints": {
            "GET /v1/meta": "This document.",
            "GET /v1/block": "A block's height, time, proposer and tx count (height=latest|N).",
            "GET /v1/account": "An address's liquid, staked and reward TIA (address=celestia19jz67suexyclppfg2wheh97sht69khld242y5e).",
            "GET /v1/network": "Live tip, total/bonded TIA supply and staking ratio.",
            "GET /v1/validators": "The active validator set ranked by voting power (limit=25)."
        },
        "tip_height": 11470462,
        "description": "Live on-chain data from the Celestia network (TIA), the first modular data-availability blockchain, a proof-of-stake chain secured by delegated staking, via a public Cosmos REST node. The account endpoint returns an address's liquid TIA balance, total delegated (staked) TIA and pending staking rewards; the validators endpoint returns the active validator set ranked by voting power with each validator's staked TIA, commission and status; the block endpoint returns a block's height, time, proposer and transaction count; the network endpoint returns the tip height, total TIA supply, bonded TIA and staking ratio. Live, no key, nothing stored. Distinct from the Cosmos Hub, Bitcoin, Dogecoin, VeChain, Solana and EVM on-chain APIs and from price feeds — this is Celestia's own TIA account state, delegated-staking economy, validator set and blocks.",
        "upstream_status": "ok"
    },
    "meta": {
        "timestamp": "2026-06-10T14:01:35.927Z",
        "request_id": "329b025c-b40c-4756-813f-f1eae4aa3340"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}