> ## 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 geçmiş CLMM limit emirlerini listele

> `wallet`'a ait kapatılmış CLMM limit emirlerini döndürür. Her satır, emirin aktif kümeden
ayrıldığı andaki özetini içerir. `nextPageId` aracılığıyla imleç tabanlı sayfalama uygulanır.




## OpenAPI

````yaml /tr/api-reference/openapi/temp-api-v1.yaml get /limit-order/history/order/list-by-user
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/history/order/list-by-user:
    get:
      tags:
        - Temporary
      summary: Bir cüzdanın geçmiş CLMM limit emirlerini listele
      description: >
        `wallet`'a ait kapatılmış CLMM limit emirlerini döndürür. Her satır,
        emirin aktif kümeden

        ayrıldığı andaki özetini içerir. `nextPageId` aracılığıyla imleç tabanlı
        sayfalama uygulanır.
      operationId: listLimitOrderHistoryByUser
      parameters:
        - name: wallet
          in: query
          required: true
          description: Cüzdan genel anahtarı (base58)
          schema:
            type: string
            example: <your-wallet-pubkey>
        - name: hideCancel
          in: query
          required: false
          description: >
            `true` olarak ayarlandığında, hiç dolmadan kapanan (yani iptal
            edilen) emirler hariç tutulur.

            Varsayılan `false`.
          schema:
            type: string
        - name: poolId
          in: query
          required: false
          description: >-
            Filtrelenecek isteğe bağlı CLMM pool'u. `mint1` / `mint2` ile
            birlikte kullanılamaz.
          schema:
            type: string
        - name: mint1
          in: query
          required: false
          description: >-
            İsteğe bağlı mint filtresi (token A veya B). `poolId` ile birlikte
            kullanılamaz.
          schema:
            type: string
        - name: mint2
          in: query
          required: false
          description: >-
            İsteğe bağlı ikinci mint filtresi. `poolId` ile birlikte
            kullanılamaz.
          schema:
            type: string
        - name: nextPageId
          in: query
          required: false
          description: Önceki sayfa tarafından döndürülen opak sayfalama imleci (TTL ~1s).
          schema:
            type: string
        - name: size
          in: query
          required: false
          description: Sayfa boyutu (1–100, varsayılan 20).
          schema:
            type: integer
            default: 20
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/LimitOrderHistoryByUserResponse'
        '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:
    LimitOrderHistoryByUserResponse:
      type: object
      description: '`/limit-order/history/order/list-by-user` için yük.'
      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: Sonraki sayfa için opak imleç; son sayfadaysa mevcut değildir.
          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
    LimitOrderHistoryItem:
      type: object
      description: Kapatılmış tek bir limit emir özeti.
      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: Emrin açıldığı Unix zaman damgası.
        fillStatus:
          type: string
          enum:
            - NONE
            - PARTIAL
            - FULL
          description: |
            Emrin kapanmadan önce ne kadarının gerçekleştiğini gösterir:
            `NONE` (sıfır dolumla iptal edildi), `PARTIAL` veya `FULL`.
        orderInputAmountUi:
          type: number
          description: >-
            Orijinal girdi miktarı, insan birimi cinsinden (ondalıklar
            uygulanmış).
        orderOutputAmountUi:
          type: number
          description: >-
            Emrin kendi tick'inde ödeyeceği çıktı miktarı, insan birimi
            cinsinden.
        filledInputAmountUi:
          type: number
        filledOutputAmountUi:
          type: number
      required:
        - pda
        - owner
        - poolId
        - mintA
        - mintB
        - zeroForOne
        - tick
        - price
        - openBlockTime
        - fillStatus
        - orderInputAmountUi
        - orderOutputAmountUi
        - filledInputAmountUi
        - filledOutputAmountUi

````