/v1/meta
Service metadata and endpoint catalog
Essayez-le en direct
10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.
Ça marche. Récupérez une clé API et utilisez-la dans votre projet.
Obtenez une clé APIExtraits de code
curl "https://api.oanor.com/injective-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/injective-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/injective-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/injective-api/v1/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Exemple de réponse
Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.
{
"data": {
"source": "Injective Cosmos REST API (sentry.lcd.injective.network, live)",
"service": "injective-api",
"endpoints": {
"GET /v1/meta": "This document.",
"GET /v1/market": "A single market's details, spot or derivative (market_id).",
"GET /v1/orderbook": "A spot market's live on-chain order book (market_id, depth).",
"GET /v1/spot-markets": "Injective on-chain spot markets (limit).",
"GET /v1/derivative-markets": "Perpetual and futures markets with live mark price (limit)."
},
"description": "Live on-chain exchange data from the Injective network (INJ), a layer-1 blockchain with a fully on-chain central-limit order book for spot and derivative trading, via a public Injective REST node. The spot-markets endpoint lists Injective's on-chain spot markets; the derivative-markets endpoint lists perpetual and futures markets with their live mark price, oracle, margin ratios and fees; the orderbook endpoint returns a spot market's live on-chain order book (best bid/ask, mid, spread and depth, decoded to human prices); the market endpoint returns a single market's details. Live, no key, nothing stored. Distinct from centralised exchange tickers and from the Cosmos, Celestia and other on-chain balance APIs — this is Injective's own on-chain exchange order book and derivative markets.",
"upstream_status": "ok",
"spot_market_count": 141
},
"meta": {
"timestamp": "2026-06-10T14:01:33.828Z",
"request_id": "be35ea1f-5ba8-4562-bd41-52d3f319281f"
},
"status": "ok",
"message": "Meta",
"success": true
}