跳转到主要内容
GET
/
api
/
v1
/
execution
/
orders
查询订单列表
curl --request GET \
  --url https://api.example.com/api/v1/execution/orders
{
  "code": 0,
  "msg": "ok",
  "data": {
    "items": [
      {
        "clientOrderId": "ord_20260511_0001",
        "exchangeOrderId": "789123456",
        "exchange": "binance",
        "symbol": "BTCUSDT",
        "status": "new"
      }
    ]
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.nexfi.robert.dpdns.org/llms.txt

Use this file to discover all available pages before exploring further.

查询参数

exchange
enum<string>

交易所过滤。

可用选项:
binance,
okx
示例:

"binance"

symbol
string

交易对过滤。

示例:

"BTCUSDT"

status
string

订单状态过滤。

示例:

"filled"

响应

200 - application/json

成功返回订单列表

统一响应包裹结构。

code
integer
必填

业务状态码。

示例:

0

msg
string
必填

可读返回消息。

示例:

"ok"

data
object