/v1/meta
Service metadata & endpoint catalog
Try it live
10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.
It works. Grab an API key and use it in your project.
Get an API keyCode 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_..."}
)
Example response
A real response from this endpoint, captured by the latest 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
}