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

# Bir cüzdanın mevcut beklemedeki CLMM limit emirlerini listele

> Zincirde hâlâ aktif olan, `wallet`'a ait CLMM limit emirlerini döndürür — tamamen
dolmamış ve kısmen dolmuş emirlerin tamamı tek bir yük içinde döndürülür. Her satır,
zincir üstü `LimitOrderState`'in çözümlenmiş hali ile pool anahtarlarını ve indeksleyicinin
en güncel tick durumundan hesapladığı `pendingSettle` miktarını içerir.

Veriler indeksleyicinin Redis önbelleğinden sunulur ve zincirden birkaç saniyelik gecikme içerebilir.




## OpenAPI

````yaml /tr/api-reference/openapi/temp-api-v1.yaml get /limit-order/order/list
openapi: 3.0.3
info:
  title: Geçici API
  description: >
    Raydium ana API'sinde kalıcı bir yeri bulunmayan, kısa ömürlü endpoint'ler
    için tutma alanı.

    Bu servisteki endpoint'ler önceden bildirilmeksizin değişebilir, kullanımdan
    kaldırılabilir veya taşınabilir.


    **Kararlılık uyarısı:** Bu servis, hızlı iterasyona ve minimum API
    kararlılık garantisine öncelik verir.

    Yalnızca kritik olmayan yollar, dahili araçlar veya aktif geliştirme
    aşamasındaki özellikler için kullanın.
  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: Geçici endpoint'ler (kararsız)
paths:
  /limit-order/order/list:
    get:
      tags:
        - Temporary
      summary: Bir cüzdanın mevcut beklemedeki CLMM limit emirlerini listele
      description: >
        Zincirde hâlâ aktif olan, `wallet`'a ait CLMM limit emirlerini döndürür
        — tamamen

        dolmamış ve kısmen dolmuş emirlerin tamamı tek bir yük içinde
        döndürülür. Her satır,

        zincir üstü `LimitOrderState`'in çözümlenmiş hali ile pool anahtarlarını
        ve indeksleyicinin

        en güncel tick durumundan hesapladığı `pendingSettle` miktarını içerir.


        Veriler indeksleyicinin Redis önbelleğinden sunulur ve zincirden birkaç
        saniyelik gecikme içerebilir.
      operationId: listLimitOrders
      parameters:
        - name: wallet
          in: query
          required: true
          description: Cüzdan genel anahtarı (base58)
          schema:
            type: string
            example: <your-wallet-pubkey>
        - name: showErr
          in: query
          required: false
          description: >
            Mevcut olduğunda, yanıt ayrıca indeksleyiciden gelen yumuşak hata
            mesajlarını içeren bir `e` dizisi de döndürür

            (örn. bir satırın atlanmasına neden olan eksik pool veya tick-array
            önbellek girişi).
          schema:
            type: string
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/LimitOrderListResponse'
        '400':
          description: Geçersiz istek
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '500':
          description: Sunucu hatası
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
components:
  schemas:
    LimitOrderListResponse:
      type: object
      description: '`/limit-order/order/list` için yük.'
      properties:
        id:
          type: string
          description: İstek kimliği (UUID)
        success:
          type: boolean
          example: true
        data:
          type: object
          properties:
            rows:
              type: array
              items:
                $ref: '#/components/schemas/LimitOrderListItem'
            e:
              type: array
              description: >
                İsteğe bağlı. Yalnızca `showErr` ile yapılan isteklerde bulunur.
                Her giriş,

                indeksleyiciden gelen bir yumuşak hata mesajıdır (örn. bir
                satırın atlanmasına

                neden olan eksik pool veya tick dizisi önbellek girişi).
              items:
                type: string
          required:
            - rows
      required:
        - success
        - data
    ErrorResponse:
      type: object
      properties:
        id:
          type: string
        success:
          type: boolean
          example: false
        msg:
          type: string
          description: Hata mesajı
      required:
        - success
        - msg
    LimitOrderListItem:
      type: object
      description: Mevcut durumda bekleyen tek bir limit emir.
      properties:
        pda:
          type: string
          description: LimitOrderState hesabının açık anahtarı
        poolId:
          type: string
        owner:
          type: string
        tick:
          type: integer
          description: Bu emrin beklediği quantize edilmiş tick.
        price:
          type: number
          description: >-
            `tick` değerindeki, mint ondalıkları uygulanmış insan tarafından
            okunabilir fiyat.
        zeroForOne:
          type: boolean
          description: true = token_0 sat, token_1 al; false = ters yön.
        orderPhase:
          type: string
          description: u64 string olarak — bu emrin kendi tick'indeki FIFO kohort aşaması.
        totalAmount:
          type: string
          description: >-
            u64 string olarak — emir tarafından taahhüt edilen toplam girdi
            miktarı.
        filledAmount:
          type: string
          description: >-
            u64 string olarak — swap'lar tarafından şimdiye kadar tüketilen
            birikimli girdi.
        openTime:
          type: string
          description: u64 string olarak — emrin açıldığı unix zaman damgası.
        pendingSettle:
          type: string
          description: >-
            u64 string olarak — `SettleLimitOrder` bekleniyor olan, sahibine
            ödenmek üzere bekleyen çıktı miktarı.
        filledAmountUpdate:
          type: string
          description: >-
            u64 string olarak — istemci kolaylığı için döndürülen `filledAmount`
            aynası.
        mintA:
          type: string
        mintB:
          type: string
        mintDecimalsA:
          type: integer
        mintDecimalsB:
          type: integer
        poolCurrentPrice:
          type: number
          description: İnsan tarafından okunabilir güncel pool fiyatı (token_1 / token_0).
      required:
        - pda
        - poolId
        - owner
        - tick
        - price
        - zeroForOne
        - orderPhase
        - totalAmount
        - filledAmount
        - openTime
        - pendingSettle
        - filledAmountUpdate
        - mintA
        - mintB
        - mintDecimalsA
        - mintDecimalsB
        - poolCurrentPrice

````