跳转到主要内容
GET
/
limit-order
/
history
/
order
/
list-by-user
列出钱包的历史 CLMM 限价订单
curl --request GET \
  --url https://temp-api-v1.raydium.io/limit-order/history/order/list-by-user
{
  "success": true,
  "data": {
    "rows": [
      {
        "pda": "<string>",
        "owner": "<string>",
        "poolId": "<string>",
        "mintA": "<string>",
        "mintB": "<string>",
        "zeroForOne": true,
        "tick": 123,
        "price": 123,
        "openBlockTime": 123,
        "fillStatus": "NONE",
        "orderInputAmountUi": 123,
        "orderOutputAmountUi": 123,
        "filledInputAmountUi": 123,
        "filledOutputAmountUi": 123
      }
    ],
    "nextPageId": "<string>"
  },
  "id": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://docs.raydium.io/llms.txt

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

查询参数

wallet
string
必填

钱包公钥(base58)

示例:

"<your-wallet-pubkey>"

hideCancel
string

设为 true 时,排除从未成交即关闭(即已取消)的订单,默认为 false

poolId
string

可选的 CLMM pool 过滤条件,与 mint1 / mint2 互斥。

mint1
string

可选的 mint 过滤条件(token A 或 B),与 poolId 互斥。

mint2
string

可选的第二个 mint 过滤条件,与 poolId 互斥。

nextPageId
string

由上一页返回的不透明分页游标(TTL 约 1 小时)。

size
integer
默认值:20

每页数量(1–100,默认 20)。

响应

Success

/limit-order/history/order/list-by-user 的响应数据。

success
boolean
必填
示例:

true

data
object
必填
id
string