跳转到主要内容
GET
/
api
/
v1
/
staking
/
orders
获取订单列表
curl --request GET \
  --url https://api.example.com/api/v1/staking/orders
{
  "code": 0,
  "msg": "ok",
  "data": {
    "items": [
      {
        "orderId": "stk_20260511_0001",
        "productId": "base_usdc_nexfi_vault",
        "walletAddress": "0xabc1230000000000000000000000000000000000",
        "orderType": "subscribe",
        "status": "confirmed",
        "txHash": "0x123",
        "updatedAt": "2026-05-11T10:00:00.000Z"
      }
    ]
  }
}

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.

查询参数

walletAddress
string
必填

钱包地址。

示例:

"0xabc1230000000000000000000000000000000000"

status
string

订单状态过滤。

示例:

"confirmed"

orderType
string

订单类型过滤。

示例:

"subscribe"

limit
integer

返回条数上限。

示例:

20

响应

200 - application/json

成功返回订单列表

统一响应包裹结构。

code
integer
必填

业务状态码,0 表示成功。

示例:

0

msg
string
必填

可读返回消息。

示例:

"ok"

data
object