← 返回
开发者工具 Key 中文

OKX API

This skill should be used when the user asks to "query OKX account balance", "place an order on OKX", "get OKX market data", "check OKX positions", "cancel O...
当用户请求查询OKX账户余额、下单、获取市场数据、查看持仓或撤单时使用此技能。
xhfkindergarten
开发者工具 clawhub v1.0.0 1 版本 99835 Key: 需要
★ 0
Stars
📥 1,210
下载
💾 42
安装
1
版本
#latest

概述

OKX API v5 Skill

Overview

OKX API v5 provides REST and WebSocket interfaces for spot trading, derivatives (perpetual swaps, futures, options), market data, and account management.

  • Base URL: https://www.okx.com
  • API version prefix: /api/v5/
  • Demo/sandbox: same base URL, add header x-simulated-trading: 1
  • Auth: HMAC SHA256 signature (private endpoints only)
  • Rate limits: public endpoints by IP; private endpoints by User ID

All examples use scripts/okx_auth.py — a reusable helper that handles credential loading, signing, and response parsing.


Configuration Setup

Store credentials in ~/.openclaw/openclaw.json under the top-level env field. OpenClaw automatically injects these into the agent environment:

{
  "env": {
    "OKX_API_KEY": "your-api-key",
    "OKX_SECRET_KEY": "your-secret-key",
    "OKX_PASSPHRASE": "your-passphrase",
    "OKX_DEMO": "1"
  }
}

Set OKX_DEMO=1 to use sandbox mode (paper trading). Remove or set to 0 for live trading.

You can also export these in your shell:

export OKX_API_KEY="your-api-key"
export OKX_SECRET_KEY="your-secret-key"
export OKX_PASSPHRASE="your-passphrase"
export OKX_DEMO="1"

Authentication

Private endpoints require four request headers:

HeaderValue
---------------
OK-ACCESS-KEYYour API key
OK-ACCESS-SIGNBase64(HmacSHA256(pre-sign, secret))
OK-ACCESS-TIMESTAMPISO 8601 UTC timestamp with milliseconds
OK-ACCESS-PASSPHRASEYour passphrase
Content-Typeapplication/json (POST only)

Signature formula:

pre_sign = timestamp + METHOD + path_with_query + body
signature = base64(hmac_sha256(pre_sign, secret_key))
  • timestamp: e.g. 2024-01-15T10:30:00.123Z
  • METHOD: uppercase GET or POST
  • path_with_query: e.g. /api/v5/account/balance or /api/v5/market/ticker?instId=BTC-USDT
  • body: JSON string for POST, empty string "" for GET

Use scripts/okx_auth.py — it handles all of this automatically. See references/authentication.md for edge cases and error codes.


Common Operations Quick Reference

IntentMethodEndpoint
--------------------------
Get account balanceGET/api/v5/account/balance
Get positionsGET/api/v5/account/positions
Get ticker (spot price)GET/api/v5/market/ticker?instId=BTC-USDT
Get candlestick dataGET/api/v5/market/candles?instId=BTC-USDT&bar=1H
Get order bookGET/api/v5/market/books?instId=BTC-USDT&sz=20
Get recent tradesGET/api/v5/market/trades?instId=BTC-USDT
Place orderPOST/api/v5/trade/order
Amend orderPOST/api/v5/trade/amend-order
Cancel orderPOST/api/v5/trade/cancel-order
Get open ordersGET/api/v5/trade/orders-pending
Get order historyGET/api/v5/trade/orders-history
Get instrumentsGET/api/v5/public/instruments?instType=SPOT
Get funding rateGET/api/v5/public/funding-rate?instId=BTC-USDT-SWAP

Response Handling

All REST responses follow this envelope:

{
  "code": "0",
  "msg": "",
  "data": [...]
}
  • code: "0" — success
  • Any other code — error; check msg for details
  • data is always an array (even for single objects)

Common error codes:

CodeMeaning
---------------
50011Rate limit exceeded — back off and retry
50111Invalid API key
50113Invalid signature
50114Timestamp out of range (±30s tolerance)
51000Parameter error — check required fields
51008Insufficient balance

The make_request() function in scripts/okx_auth.py raises a RuntimeError when code != "0", so you can catch errors cleanly.


Rate Limits

OKX enforces rate limits per endpoint group:

CategoryLimit
-----------------
Public market data20 req/2s per IP
Account endpoints10 req/2s per UID
Trade order placement60 req/2s per UID
Order cancellation60 req/2s per UID

If you hit 50011, sleep 2 seconds and retry. For bulk operations, use batch endpoints:

  • POST /api/v5/trade/batch-orders — place up to 20 orders
  • POST /api/v5/trade/cancel-batch-orders — cancel up to 20 orders

Place Order — Key Parameters

{
  "instId": "BTC-USDT",
  "tdMode": "cash",
  "side": "buy",
  "ordType": "limit",
  "px": "42000",
  "sz": "0.001"
}
FieldValues
---------------
instIdBTC-USDT (spot), BTC-USDT-SWAP (perp), BTC-USD-241227 (futures)
tdModecash (spot), cross (cross margin), isolated
sidebuy or sell
ordTypelimit, market, post_only, fok, ioc
pxPrice (required for limit orders)
szSize in base currency (spot) or contracts (derivatives)

See examples/place-order.py for a complete working example.


WebSocket

For real-time data (prices, order updates, position changes), use WebSocket instead of polling REST.

  • Public: wss://ws.okx.com:8443/ws/v5/public
  • Private: wss://ws.okx.com:8443/ws/v5/private

Subscribe to channels by sending JSON messages. Private channels require a login operation first using the same HMAC signature scheme.

See references/websocket.md and examples/websocket-ticker.py.


References

  • references/authentication.md — Signature details, edge cases, auth error troubleshooting
  • references/market-data-endpoints.md — All public REST endpoints with params and response fields
  • references/trading-endpoints.md — All private REST endpoints, order types, instrument types
  • references/websocket.md — WebSocket URLs, subscription format, private channel auth, common channels
  • examples/get-balance.py — Fetch and display account balance
  • examples/get-market-data.py — Ticker and candlestick data
  • examples/place-order.py — Place a limit buy order
  • examples/websocket-ticker.py — Real-time price subscription
  • scripts/okx_auth.py — Reusable auth/request helper (import in your scripts)

版本历史

共 1 个版本

  • v1.0.0 当前
    2026-03-30 10:47 安全 安全

安全检测

腾讯云安全 (Keen)

安全,无风险
查看报告

腾讯云安全 (Sanbu)

安全,无风险
查看报告

🔗 相关推荐

developer-tools

Github

steipete
使用 `gh` CLI 与 GitHub 交互,通过 `gh issue`、`gh pr`、`gh run` 和 `gh api` 管理议题、PR、CI 运行及高级查询。
★ 672 📥 324,427
developer-tools

Gog

steipete
Google Workspace 命令行工具,支持 Gmail、日历、云端硬盘、通讯录、表格和文档。
★ 921 📥 185,838
developer-tools

CodeConductor.ai

larsonreever
AI驱动平台,提供快速全栈开发、智能体、工作流自动化及低代码AI集成的可扩展产品创建。
★ 68 📥 180,388