Naar de inhoud
GET /v1/meta

Service metadata and endpoint catalog

Probeer het live

10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.

Aangepaste headers (optioneel)
api.oanor.com/injective-api

Het werkt. Haal een API-key op en gebruik hem in je project.

Verkrijg een API-sleutel

Codefragmenten

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_..."}
)

Voorbeeldrespons

Een echte respons van dit endpoint, vastgelegd bij de laatste health check.

{
    "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
}