> ## 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 지정가 주문 — 완전 미체결 및 부분 체결 주문 모두 하나의 페이로드로 반환됩니다. 각 행은 디코딩된 온체인 `LimitOrderState`와 풀 키, 그리고 인덱서가 최신 틱 상태로부터 계산한 `pendingSettle` 금액을 포함합니다.

데이터는 인덱서의 Redis 캐시에서 제공되며 체인보다 몇 초 지연될 수 있습니다.




## OpenAPI

````yaml /ko/api-reference/openapi/temp-api-v1.yaml get /limit-order/order/list
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/order/list:
    get:
      tags:
        - Temporary
      summary: 지갑에 현재 등록된 CLMM 지정가 주문 목록 조회
      description: >
        `wallet`이 소유한 온체인 CLMM 지정가 주문 — 완전 미체결 및 부분 체결 주문 모두 하나의 페이로드로 반환됩니다. 각
        행은 디코딩된 온체인 `LimitOrderState`와 풀 키, 그리고 인덱서가 최신 틱 상태로부터 계산한
        `pendingSettle` 금액을 포함합니다.


        데이터는 인덱서의 Redis 캐시에서 제공되며 체인보다 몇 초 지연될 수 있습니다.
      operationId: listLimitOrders
      parameters:
        - name: wallet
          in: query
          required: true
          description: 지갑 공개 키 (base58)
          schema:
            type: string
            example: <your-wallet-pubkey>
        - name: showErr
          in: query
          required: false
          description: >
            이 파라미터가 있으면 응답에 인덱서의 소프트 실패 메시지를 담은 `e` 배열도 포함됩니다 (예: 행 처리가 건너뛰어진
            원인이 된 누락된 풀 또는 틱 배열 캐시 항목).
          schema:
            type: string
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/LimitOrderListResponse'
        '400':
          description: 잘못된 요청
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '500':
          description: 서버 오류
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
components:
  schemas:
    LimitOrderListResponse:
      type: object
      description: '`/limit-order/order/list`의 페이로드.'
      properties:
        id:
          type: string
          description: 요청 ID (UUID)
        success:
          type: boolean
          example: true
        data:
          type: object
          properties:
            rows:
              type: array
              items:
                $ref: '#/components/schemas/LimitOrderListItem'
            e:
              type: array
              description: |
                선택 사항. `showErr`와 함께 요청한 경우에만 표시됩니다. 각 항목은
                인덱서의 소프트 실패 메시지입니다 (예: 누락된 풀 또는 틱 배열
                캐시 항목으로 인해 해당 행이 건너뛰어진 경우).
              items:
                type: string
          required:
            - rows
      required:
        - success
        - data
    ErrorResponse:
      type: object
      properties:
        id:
          type: string
        success:
          type: boolean
          example: false
        msg:
          type: string
          description: 오류 메시지
      required:
        - success
        - msg
    LimitOrderListItem:
      type: object
      description: 현재 대기 중인 단일 지정가 주문.
      properties:
        pda:
          type: string
          description: LimitOrderState 계정 공개 키
        poolId:
          type: string
        owner:
          type: string
        tick:
          type: integer
          description: 이 주문이 위치한 양자화된 틱.
        price:
          type: number
          description: '`tick` 기준의 사람이 읽을 수 있는 가격 (mint 소수점 자릿수 적용).'
        zeroForOne:
          type: boolean
          description: true = token_0 판매, token_1 구매; false = 반대 방향.
        orderPhase:
          type: string
          description: u64 문자열 — 해당 틱에서 이 주문의 FIFO 코호트 단계.
        totalAmount:
          type: string
          description: u64 문자열 — 주문에 투입된 총 입력 수량.
        filledAmount:
          type: string
          description: u64 문자열 — 지금까지 스왑으로 소비된 누적 입력 수량.
        openTime:
          type: string
          description: u64 문자열 — 주문이 생성된 Unix 타임스탬프.
        pendingSettle:
          type: string
          description: u64 문자열 — `SettleLimitOrder` 대기 중인, 소유자에게 지급 예정인 현재 출력 수량.
        filledAmountUpdate:
          type: string
          description: u64 문자열 — 클라이언트 편의를 위해 반환되는 `filledAmount`의 미러 값.
        mintA:
          type: string
        mintB:
          type: string
        mintDecimalsA:
          type: integer
        mintDecimalsB:
          type: integer
        poolCurrentPrice:
          type: number
          description: 사람이 읽을 수 있는 현재 풀 가격 (token_1 / token_0).
      required:
        - pda
        - poolId
        - owner
        - tick
        - price
        - zeroForOne
        - orderPhase
        - totalAmount
        - filledAmount
        - openTime
        - pendingSettle
        - filledAmountUpdate
        - mintA
        - mintB
        - mintDecimalsA
        - mintDecimalsB
        - poolCurrentPrice

````