跳转到主要内容
GET
/
api
/
v1
/
admin
/
strategies
/
{strategyId}
查询策略详情
curl --request GET \
  --url https://api.example.com/api/v1/admin/strategies/{strategyId}
{
  "code": 0,
  "msg": "ok",
  "data": {
    "strategyId": "cross_arb_btc_01",
    "strategyType": "cross_exchange_arbitrage",
    "symbols": [
      "BTC/USDT"
    ],
    "exchanges": [
      "binance",
      "okx"
    ],
    "status": "running"
  }
}

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.

路径参数

strategyId
string
必填

策略 ID。

示例:

"cross_arb_btc_01"

响应

200 - application/json

成功返回策略详情

统一响应包裹结构。

code
integer
必填

业务状态码。

示例:

0

msg
string
必填

可读返回消息。

示例:

"ok"

data
object

策略列表项或详情项。