/v1/meta
Service metadata & endpoint catalog
Live testen
10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.
Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.
API-Key holenCode-Snippets
curl "https://api.oanor.com/osmosischain-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/osmosischain-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/osmosischain-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/osmosischain-api/v1/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"data": {
"sample": {
"total_pools": 3469
},
"source": "Osmosis public Cosmos REST / LCD nodes (osmosis-api.polkachu.com and mirrors), keyless",
"service": "osmosischain-api",
"endpoints": {
"GET /v1/meta": "This document.",
"GET /v1/pool": "Single pool full detail (id).",
"GET /v1/block": "Latest block.",
"GET /v1/pools": "DEX liquidity pools (limit) + chain-wide pool count.",
"GET /v1/supply": "Total OSMO supply.",
"GET /v1/staking": "Osmosis chain staking economics & parameters."
},
"description": "Live on-chain data for Osmosis (the leading Cosmos DEX / AMM L1, chain osmosis-1) with no key: the DEX liquidity pools (GAMM AMM pools with their assets, reserves, swap fee and total count), a single pool's full detail, the Osmosis chain staking economics, the total OSMO supply, and the latest block. The Osmosis-DEX / on-chain / staking layer for DeFi dashboards, liquidity analytics and research. Distinct from other chain readers — Osmosis and its AMM liquidity pools. Live, short cache only.",
"upstream_status": "ok"
},
"meta": {
"timestamp": "2026-06-15T02:10:33.448Z",
"request_id": "d353c419-ff1a-4a3e-9191-3ef72e7d40b2"
},
"status": "ok",
"message": "Meta",
"success": true
}