---
title: "List a wallet's historical CLMM limit orders"
method: GET
path: "/limit-order/history/order/list-by-user"
tags: ["Temporary"]
---

# List a wallet's historical CLMM limit orders

`GET /limit-order/history/order/list-by-user`

Return closed CLMM limit orders owned by `wallet`. Each row summarizes the order at
the time it left the active set. Cursor-paginated via `nextPageId`.

## Query parameters

- `wallet` string, required
- `hideCancel` string
- `poolId` string
- `mint1` string
- `mint2` string
- `nextPageId` string
- `size` integer

## Response `200`

Success

- LimitOrderHistoryByUserResponse — Payload for `/limit-order/history/order/list-by-user`.
  - `id` string
  - `success` boolean, required
  - `data` object, required
    - `rows` LimitOrderHistoryItem[], required
      - `pda` string, required
      - `owner` string, required
      - `poolId` string, required
      - `mintA` string, required
      - `mintB` string, required
      - `zeroForOne` boolean, required
      - `tick` integer, required
      - `price` number, required
      - `openBlockTime` integer, required — Unix timestamp the order was opened.
      - `fillStatus` 'NONE' | 'PARTIAL' | 'FULL', required — How much of the order was eventually filled before it closed: `NONE` (cancelled with zero fill), `PARTIAL`, or `FULL`.
      - `orderInputAmountUi` number, required — Original input amount, in human units (decimals applied).
      - `orderOutputAmountUi` number, required — Output amount the order would have paid out at its tick, in human units.
      - `filledInputAmountUi` number, required
      - `filledOutputAmountUi` number, required
    - `nextPageId` string, nullable — Opaque cursor for the next page; absent when this is the last page.

## Other responses

- `400` — Invalid request
- `500` — Server error

---

[API](https://skmtc.net/raydium/apis/api-v1-v2-legacy.md) · [All operations](https://skmtc.net/raydium/apis/api-v1-v2-legacy/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/raydium/api-v1-v2-legacy/versions/cca93975de95/schema)
