Saltar al contenido principal
GET
/
limit-order
/
history
/
order
/
list-by-user
Lista las órdenes límite CLMM históricas de una wallet
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.

Parámetros de consulta

wallet
string
requerido

Clave pública de la wallet (base58)

Ejemplo:

"<your-wallet-pubkey>"

hideCancel
string

Cuando se establece en true, excluye las órdenes que se cerraron sin haberse ejecutado nunca (es decir, canceladas). Por defecto false.

poolId
string

Pool CLMM opcional por el que filtrar. Mutuamente exclusivo con mint1 / mint2.

mint1
string

Filtro de mint opcional (token A o B). Mutuamente exclusivo con poolId.

mint2
string

Segundo filtro de mint opcional. Mutuamente exclusivo con poolId.

nextPageId
string

Cursor de paginación opaco devuelto por la página anterior (TTL ~1h).

size
integer
predeterminado:20

Tamaño de página (1–100, por defecto 20).

Respuesta

Success

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

success
boolean
requerido
Ejemplo:

true

data
object
requerido
id
string