/v1/meta
Service metadata
Pruébalo en vivo
10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.
Funciona. Consigue una clave API y úsala en tu proyecto.
Obtener una clave APIFragmentos de código
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_..."}
)
Respuesta de ejemplo
Una respuesta real de este endpoint, capturada en la última comprobación de estado.
{
"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
}