Skip to main content
GET
/
limit-order
/
history
/
order
/
list-by-user
List a wallet's historical CLMM limit orders
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.

Query Parameters

wallet
string
required

Wallet public key (base58)

Example:

"<your-wallet-pubkey>"

hideCancel
string

When set to true, exclude orders that closed without ever being filled (i.e. cancelled). Default false.

poolId
string

Optional CLMM pool to filter by. Mutually exclusive with mint1 / mint2.

mint1
string

Optional mint filter (token A or B). Mutually exclusive with poolId.

mint2
string

Optional second mint filter. Mutually exclusive with poolId.

nextPageId
string

Opaque pagination cursor returned by the previous page (TTL ~1h).

size
integer
default:20

Page size (1–100, default 20).

Response

Success

Payload for /limit-order/history/order/list-by-user.

success
boolean
required
Example:

true

data
object
required
id
string