Vai al contenuto
GET /v1/meta

Spec

Provalo dal vivo

10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.

Intestazioni personalizzate (facoltative)
api.oanor.com/bingx-api

Funziona. Prendi una chiave API e usala nel tuo progetto.

Ottieni una chiave API

Frammenti di codice

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

Risposta di esempio

Una risposta reale di questo endpoint, acquisita dall'ultimo health check.

{
    "data": {
        "note": "Markets are BASE-QUOTE (e.g. BTC-USDT); BTC_USDT is also accepted. change_24h_pct is the 24h change; quote_volume_24h is in the quote currency.",
        "source": "BingX API (open-api.bingx.com/openApi/spot/v1, live)",
        "service": "bingx-api",
        "endpoints": {
            "GET /v1/book": "Live order-book depth — best bid/ask and spread (market=BTC-USDT, limit=20).",
            "GET /v1/meta": "This document.",
            "GET /v1/ticker": "Ticker for one market (market=BTC-USDT or symbol=BTC&quote=USDT).",
            "GET /v1/markets": "Tradable pairs with order-size and notional limits (quote=USDT optional).",
            "GET /v1/tickers": "All spot markets for a quote ranked by 24h quote volume (quote=USDT, limit=50)."
        },
        "description": "Live spot market data from BingX, a global crypto exchange. The ticker endpoint returns a market's last price, open, 24h high/low, 24h change, best bid/ask and base/quote volume; the tickers endpoint ranks every spot market for a quote currency by 24h quote volume; the markets endpoint lists tradable pairs with order-size and notional limits; the book endpoint returns live order-book depth. Live, no key, nothing stored. A distinct global venue, separate from other exchange feeds.",
        "market_count": 882,
        "upstream_status": "ok"
    },
    "meta": {
        "timestamp": "2026-06-11T07:48:59.598Z",
        "request_id": "98d75771-aa44-4fb3-80b4-af34cd4cda5c"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}