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

# 지갑의 CLMM 지정가 주문 내역 조회

> `wallet`이 소유한 종료된 CLMM 지정가 주문을 반환합니다. 각 행은 주문이 활성 목록에서 제외된 시점의 요약 정보를 담고 있습니다. `nextPageId`를 통해 커서 페이지네이션을 지원합니다.




## OpenAPI

````yaml /ko/api-reference/openapi/temp-api-v1.yaml get /limit-order/history/order/list-by-user
openapi: 3.0.3
info:
  title: Temp API
  description: |
    메인 Raydium API에 영구적인 위치가 없는 단기 엔드포인트를 위한 임시 공간입니다.
    이 서비스의 엔드포인트는 사전 고지 없이 변경되거나 지원이 중단되거나 이동될 수 있습니다.

    **안정성 경고:** 이 서비스는 빠른 반복 개발을 우선시하며 API 안정성을 최소한으로만 보장합니다.
    비중요 경로, 내부 도구, 또는 개발 중인 기능에만 사용하세요.
  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: 임시 엔드포인트 (불안정)
paths:
  /limit-order/history/order/list-by-user:
    get:
      tags:
        - Temporary
      summary: 지갑의 CLMM 지정가 주문 내역 조회
      description: >
        `wallet`이 소유한 종료된 CLMM 지정가 주문을 반환합니다. 각 행은 주문이 활성 목록에서 제외된 시점의 요약 정보를 담고
        있습니다. `nextPageId`를 통해 커서 페이지네이션을 지원합니다.
      operationId: listLimitOrderHistoryByUser
      parameters:
        - name: wallet
          in: query
          required: true
          description: 지갑 공개 키 (base58)
          schema:
            type: string
            example: <your-wallet-pubkey>
        - name: hideCancel
          in: query
          required: false
          description: |
            `true`로 설정하면 한 번도 체결되지 않고 종료된 주문(즉, 취소된 주문)을 제외합니다. 기본값은 `false`입니다.
          schema:
            type: string
        - name: poolId
          in: query
          required: false
          description: 특정 CLMM 풀로 필터링하는 옵션입니다. `mint1` / `mint2`와 함께 사용할 수 없습니다.
          schema:
            type: string
        - name: mint1
          in: query
          required: false
          description: 민트 필터 옵션 (토큰 A 또는 B). `poolId`와 함께 사용할 수 없습니다.
          schema:
            type: string
        - name: mint2
          in: query
          required: false
          description: 두 번째 민트 필터 옵션. `poolId`와 함께 사용할 수 없습니다.
          schema:
            type: string
        - name: nextPageId
          in: query
          required: false
          description: 이전 페이지에서 반환된 불투명한 페이지네이션 커서 (TTL ~1h).
          schema:
            type: string
        - name: size
          in: query
          required: false
          description: 페이지 크기 (1–100, 기본값 20).
          schema:
            type: integer
            default: 20
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/LimitOrderHistoryByUserResponse'
        '400':
          description: 잘못된 요청
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '500':
          description: 서버 오류
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
components:
  schemas:
    LimitOrderHistoryByUserResponse:
      type: object
      description: '`/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: 다음 페이지를 위한 불투명 커서; 마지막 페이지인 경우 생략됩니다.
          required:
            - rows
      required:
        - success
        - data
    ErrorResponse:
      type: object
      properties:
        id:
          type: string
        success:
          type: boolean
          example: false
        msg:
          type: string
          description: 오류 메시지
      required:
        - success
        - msg
    LimitOrderHistoryItem:
      type: object
      description: 종료된 단일 지정가 주문의 요약 정보.
      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 타임스탬프.
        fillStatus:
          type: string
          enum:
            - NONE
            - PARTIAL
            - FULL
          description: |
            주문이 종료되기 전까지 체결된 비율:
            `NONE` (체결 없이 취소됨), `PARTIAL`, 또는 `FULL`.
        orderInputAmountUi:
          type: number
          description: 원래 입력 수량 (소수점 자릿수 적용된 사람이 읽을 수 있는 단위).
        orderOutputAmountUi:
          type: number
          description: 해당 틱 기준으로 주문이 지급했을 출력 수량 (사람이 읽을 수 있는 단위).
        filledInputAmountUi:
          type: number
        filledOutputAmountUi:
          type: number
      required:
        - pda
        - owner
        - poolId
        - mintA
        - mintB
        - zeroForOne
        - tick
        - price
        - openBlockTime
        - fillStatus
        - orderInputAmountUi
        - orderOutputAmountUi
        - filledInputAmountUi
        - filledOutputAmountUi

````