Ir al contenido
GET /v1/instruments

Active instruments with funding, OI & 24h volume

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/bitmex-api

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

Obtener una clave API

Fragmentos de código

curl "https://api.oanor.com/bitmex-api/v1/instruments" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/bitmex-api/v1/instruments", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/bitmex-api/v1/instruments");
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/bitmex-api/v1/instruments",
    headers={"x-oanor-key": "oanor_test_..."}
)

Respuesta de ejemplo

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

{
    "data": {
        "count": 136,
        "venue": "bitmex",
        "instruments": [
            {
                "type": "FFWCSX",
                "state": "Open",
                "symbol": "TONUSD",
                "low_price": 1.6860000000000002,
                "timestamp": "2026-06-15T11:15:37.889Z",
                "high_price": 1.8192,
                "last_price": 1.7845,
                "mark_price": 1.779,
                "open_value": 617615430,
                "underlying": "TON",
                "volume_24h": 2577,
                "index_price": 1.779,
                "funding_rate": 0.0001,
                "turnover_24h": 29631.92882715105,
                "open_interest": 34717,
                "quote_currency": "USD"
            },
            {
                "type": "FFWCSX",
                "state": "Open",
                "symbol": "TONUSDT",
                "low_price": 1.6802000000000001,
                "timestamp": "2026-06-15T11:15:37.889Z",
                "high_price": 1.8181,
                "last_price": 1.7764,
                "mark_price": 1.7802,
                "open_value": 404739151200,
                "underlying": "TON",
                "volume_24h": 150461,
                "index_price": 1.7804,
                "funding_rate": -0.001479,
                "turnover_24h": 264820.27079999994,
                "open_interest": 227356,
                "quote_currency": "USDT"
            },
            {
                "type": "FFSCSX",
                "state": "Open",
                "symbol": "USDJPY",
                "low_price": 160.07,
                "timestamp": "2026-06-15T11:15:37.889Z",
                "high_price": 160.16,
                "last_price": 160.08,
                "mark_price": 160.14,
                "open_value": 62443390200,
                "underlying": "USD",
                "volume_24h": 103,
                "index_price": 160.14,
                "funding_rate": 0,
                "turnover_24h": 26410.52486872474,
                "open_interest": 38993,
                "quote_currency": "JPY"
            },
            {
                "type": "FFWCSX",
                "state": "Open",
                "symbol": "SUIUSDT",
                "low_price": 0.746,
                "timestamp": "2026-06-15T11:15:37.889Z",
                "high_price": 0.808,
                "last_price": 0.806,
                "mark_price": 0.8057,
                "open_value": 905216680060,
                "underlying": "SUI",
                "volume_24h": 587339600,
                "index_price": 0.8057,
                "funding_rate": 0.0001,
                "turnover_24h": 466982.6476899999,
                "open_interest": 1123515800,
                "quote_currency": "USDT"
            },
            {
                "type": "FFWCSX",
                "state": "Open",
                "symbol": "XRPUSDT",
                "low_price": 1.1261,
                "timestamp": "2026-06-15T11:15:37.889Z",

…