Ir al contenido
GET /v1/meta

Service metadata and endpoint catalog

Pruébalo en vivo

10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.

Encabezados personalizados (opcional)
api.oanor.com/injective-api

Funciona. Consigue una clave API y úsala en tu proyecto.

Obtener una clave API

Fragmentos de código

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

Respuesta de ejemplo

Una respuesta real de este endpoint, capturada en la última comprobación de estado.

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