> ## 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.

# List a wallet's historical CLMM limit orders

> 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`.




## OpenAPI

````yaml /api-reference/openapi/temp-api-v1.yaml get /limit-order/history/order/list-by-user
openapi: 3.0.3
info:
  title: Temp API
  description: >
    A holding pen for short-lived endpoints that do not have a permanent home in
    the main Raydium API.

    Endpoints in this service may change, be deprecated, or move without notice.


    **Stability warning:** This service prioritizes rapid iteration and minimal
    API stability guarantees.

    Only use for non-critical paths, internal tools, or features in active
    development.
  version: 1.0.0
  contact:
    name: Raydium
    url: https://raydium.io
servers:
  - url: https://temp-api-v1.raydium.io
    description: Mainnet
  - url: https://temp-api-v1-devnet.raydium.io
    description: Devnet
security: []
tags:
  - name: Temporary
    description: Temporary endpoints (unstable)
paths:
  /limit-order/history/order/list-by-user:
    get:
      tags:
        - Temporary
      summary: List a wallet's historical CLMM limit orders
      description: >
        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`.
      operationId: listLimitOrderHistoryByUser
      parameters:
        - name: wallet
          in: query
          required: true
          description: Wallet public key (base58)
          schema:
            type: string
            example: <your-wallet-pubkey>
        - name: hideCancel
          in: query
          required: false
          description: >
            When set to `true`, exclude orders that closed without ever being
            filled

            (i.e. cancelled). Default `false`.
          schema:
            type: string
        - name: poolId
          in: query
          required: false
          description: >-
            Optional CLMM pool to filter by. Mutually exclusive with `mint1` /
            `mint2`.
          schema:
            type: string
        - name: mint1
          in: query
          required: false
          description: >-
            Optional mint filter (token A or B). Mutually exclusive with
            `poolId`.
          schema:
            type: string
        - name: mint2
          in: query
          required: false
          description: Optional second mint filter. Mutually exclusive with `poolId`.
          schema:
            type: string
        - name: nextPageId
          in: query
          required: false
          description: Opaque pagination cursor returned by the previous page (TTL ~1h).
          schema:
            type: string
        - name: size
          in: query
          required: false
          description: Page size (1–100, default 20).
          schema:
            type: integer
            default: 20
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/LimitOrderHistoryByUserResponse'
        '400':
          description: Invalid request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '500':
          description: Server error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
components:
  schemas:
    LimitOrderHistoryByUserResponse:
      type: object
      description: Payload for `/limit-order/history/order/list-by-user`.
      properties:
        id:
          type: string
        success:
          type: boolean
          example: true
        data:
          type: object
          properties:
            rows:
              type: array
              items:
                $ref: '#/components/schemas/LimitOrderHistoryItem'
            nextPageId:
              type: string
              nullable: true
              description: >-
                Opaque cursor for the next page; absent when this is the last
                page.
          required:
            - rows
      required:
        - success
        - data
    ErrorResponse:
      type: object
      properties:
        id:
          type: string
        success:
          type: boolean
          example: false
        msg:
          type: string
          description: Error message
      required:
        - success
        - msg
    LimitOrderHistoryItem:
      type: object
      description: A single closed limit order, summarized.
      properties:
        pda:
          type: string
        owner:
          type: string
        poolId:
          type: string
        mintA:
          type: string
        mintB:
          type: string
        zeroForOne:
          type: boolean
        tick:
          type: integer
        price:
          type: number
        openBlockTime:
          type: integer
          description: Unix timestamp the order was opened.
        fillStatus:
          type: string
          enum:
            - NONE
            - PARTIAL
            - FULL
          description: |
            How much of the order was eventually filled before it closed:
            `NONE` (cancelled with zero fill), `PARTIAL`, or `FULL`.
        orderInputAmountUi:
          type: number
          description: Original input amount, in human units (decimals applied).
        orderOutputAmountUi:
          type: number
          description: >-
            Output amount the order would have paid out at its tick, in human
            units.
        filledInputAmountUi:
          type: number
        filledOutputAmountUi:
          type: number
      required:
        - pda
        - owner
        - poolId
        - mintA
        - mintB
        - zeroForOne
        - tick
        - price
        - openBlockTime
        - fillStatus
        - orderInputAmountUi
        - orderOutputAmountUi
        - filledInputAmountUi
        - filledOutputAmountUi

````