> ## 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 кошелька

> Возвращает закрытые лимитные ордера CLMM, принадлежащие `wallet`. Каждая строка описывает состояние ордера на момент его выхода из активного набора. Пагинация по курсору через `nextPageId`.




## OpenAPI

````yaml /ru/api-reference/openapi/temp-api-v1.yaml get /limit-order/history/order/list-by-user
openapi: 3.0.3
info:
  title: Temp API
  description: >
    Временное хранилище для краткосрочных эндпоинтов, не имеющих постоянного
    места в основном API Raydium.

    Эндпоинты этого сервиса могут изменяться, устаревать или перемещаться без
    предупреждения.


    **Предупреждение об устойчивости:** Этот сервис ориентирован на быструю
    итерацию и не гарантирует стабильности 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: >
        Возвращает закрытые лимитные ордера CLMM, принадлежащие `wallet`. Каждая
        строка описывает состояние ордера на момент его выхода из активного
        набора. Пагинация по курсору через `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: >-
            Фильтр по mint (токен A или B) (необязательно). Взаимоисключающий с
            `poolId`.
          schema:
            type: string
        - name: mint2
          in: query
          required: false
          description: Второй фильтр по mint (необязательно). Взаимоисключающий с `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: >-
            Исходный объём входных средств в пользовательских единицах (с учётом
            decimals).
        orderOutputAmountUi:
          type: number
          description: >-
            Выходная сумма, которую заявка выплатила бы по своему tick, в
            пользовательских единицах.
        filledInputAmountUi:
          type: number
        filledOutputAmountUi:
          type: number
      required:
        - pda
        - owner
        - poolId
        - mintA
        - mintB
        - zeroForOne
        - tick
        - price
        - openBlockTime
        - fillStatus
        - orderInputAmountUi
        - orderOutputAmountUi
        - filledInputAmountUi
        - filledOutputAmountUi

````