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

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

API-Key holen

Code-Snippets

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

Beispiel-Response

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

{
    "data": {
        "sample": {
            "host_zones": 15
        },
        "source": "Stride public Cosmos REST / LCD nodes (stride-api.polkachu.com and mirrors), keyless",
        "service": "stride-api",
        "endpoints": {
            "GET /v1/meta": "This document.",
            "GET /v1/block": "Latest block.",
            "GET /v1/supply": "Total STRD supply.",
            "GET /v1/staking": "Stride chain staking economics & parameters.",
            "GET /v1/validators": "Active validator set (limit).",
            "GET /v1/liquid-staking": "Liquid-staking host zones (stTokens & redemption rates)."
        },
        "description": "Live on-chain data for Stride (the Cosmos liquid-staking hub L1, chain stride-1) with no key: the liquid-staking host zones (every chain Stride liquid-stakes, with its stToken, redemption rate and total staked), the Stride chain's own staking economics, the active validator set, the total STRD supply, and the latest block. The Stride-liquid-staking / on-chain layer for staking dashboards, DeFi analytics and research. Distinct from other chain readers — Stride and its liquid-staking host zones (stATOM, stTIA, stOSMO and more). Live, short cache only.",
        "upstream_status": "ok"
    },
    "meta": {
        "timestamp": "2026-06-15T02:10:35.049Z",
        "request_id": "968b93fc-734e-4efa-ac47-e94a4e5547b0"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}