Zum Inhalt springen
GET /v1/meta

Service metadata & endpoint catalog

Live testen

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

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

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

API-Key holen

Code-Snippets

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

Beispiel-Response

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

{
    "data": {
        "sample": {
            "latest_height": 213842874
        },
        "source": "Sei public Cosmos REST / LCD nodes (rest.sei-apis.com and mirrors), keyless",
        "service": "sei-api",
        "endpoints": {
            "GET /v1/meta": "This document.",
            "GET /v1/block": "Latest block.",
            "GET /v1/supply": "Total SEI supply.",
            "GET /v1/staking": "Staking economics & parameters.",
            "GET /v1/governance": "Latest governance proposals (limit).",
            "GET /v1/validators": "Active validator set (limit)."
        },
        "description": "Live on-chain data for Sei Network (the parallelized EVM + Cosmos L1, chain pacific-1) with no key: staking economics (bonded vs unbonded SEI, bonded ratio, staking parameters), the active validator set (moniker, voting power, commission, status), the total SEI supply, the latest governance proposals, and the latest block. The Sei-on-chain / staking / governance layer for explorers, staking dashboards and research. Distinct from other chain readers — the Sei (pacific-1) network. Live, short cache only.",
        "upstream_status": "ok"
    },
    "meta": {
        "timestamp": "2026-06-15T02:10:41.818Z",
        "request_id": "cf08b093-b79e-4210-a7a3-bf9d504d485d"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}