Skip to content
GET /v1/meta

Service metadata

Try it live

10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.

Custom headers (optional)
api.oanor.com/weex-api

It works. Grab an API key and use it in your project.

Get an API key

Code snippets

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

Example response

A real response from this endpoint, captured by the latest health check.

{
    "data": {
        "name": "WEEX Market Data API",
        "source": "WEEX public contract REST (api-contract.weex.com)",
        "endpoints": [
            {
                "path": "/v1/contracts",
                "description": "List perpetual contracts (optional quote filter)"
            },
            {
                "path": "/v1/tickers",
                "description": "24h tickers for all symbols, or one via ?symbol="
            },
            {
                "path": "/v1/orderbook",
                "description": "Order-book depth for a symbol (?symbol=BTCUSDT)"
            },
            {
                "path": "/v1/trades",
                "description": "Recent trades for a symbol (?symbol=BTCUSDT)"
            },
            {
                "path": "/v1/meta",
                "description": "This metadata document"
            }
        ],
        "disclaimer": "Unofficial proxy of public WEEX endpoints. Not affiliated with WEEX. Market data only; no guarantees of accuracy or availability.",
        "description": "Public perpetual-futures market data from the WEEX exchange: contract specifications, 24h tickers, order-book depth and recent trades.",
        "symbol_note": "Symbols use the cmt_ prefix (e.g. cmt_btcusdt). You may pass BTCUSDT or cmt_btcusdt."
    },
    "meta": {
        "timestamp": "2026-06-15T11:15:15.539Z",
        "request_id": "aa338af8-0b70-47de-b019-77fcb219bf08"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}