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

# الحصول على سجل التداولات

> استرجاع التداولات الفردية. نطاق الحد: 1-100 (الافتراضي 50).



## OpenAPI

````yaml /ar/api-reference/openapi/launch-history-v1.yaml get /trade
openapi: 3.0.3
info:
  title: واجهة برمجية لسجل إطلاق Raydium
  description: >-
    توفر بيانات التداول التاريخية لتجمعات LaunchLab. تتضمن بيانات kline (الشموع)
    بفترات 1 دقيقة و5 دقائق و15 دقيقة، بالإضافة إلى سجل التداولات الفردية.
  version: 1.0.0
servers:
  - url: https://launch-history-v1.raydium.io
    description: Mainnet
  - url: https://launch-history-v1-devnet.raydium.io
    description: Devnet
security: []
tags:
  - name: Candle Data
    description: بيانات شموع OHLC
  - name: Trades
    description: سجل التداولات الفردية
  - name: Utilities
    description: فحوصات الصحة
paths:
  /trade:
    get:
      tags:
        - Trades
      summary: الحصول على سجل التداولات
      description: 'استرجاع التداولات الفردية. نطاق الحد: 1-100 (الافتراضي 50).'
      operationId: getTrade
      parameters:
        - name: poolId
          in: query
          required: true
          schema:
            type: string
        - name: limit
          in: query
          schema:
            type: integer
            default: 50
            minimum: 1
            maximum: 100
        - name: nextPageKey
          in: query
          schema:
            type: string
        - name: owner
          in: query
          schema:
            type: string
          description: التصفية حسب محفظة المتداول
        - name: minAmount
          in: query
          schema:
            type: number
        - name: maxAmount
          in: query
          schema:
            type: number
      responses:
        '200':
          description: سجل التداولات مع الترقيم

````