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

# Lấy lịch sử giao dịch

> Truy xuất các giao dịch riêng lẻ. Phạm vi giới hạn: 1-100 (mặc định 50).



## OpenAPI

````yaml /vi/api-reference/openapi/launch-history-v1.yaml get /trade
openapi: 3.0.3
info:
  title: API Lịch sử Raydium Launch
  description: >-
    Cung cấp dữ liệu giao dịch lịch sử cho các pool LaunchLab. Bao gồm dữ liệu
    kline (nến) với các khoảng 1 phút, 5 phút và 15 phút, cùng với lịch sử giao
    dịch riêng lẻ.
  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: Dữ liệu nến OHLC
  - name: Trades
    description: Lịch sử giao dịch riêng lẻ
  - name: Utilities
    description: Kiểm tra sức khỏe
paths:
  /trade:
    get:
      tags:
        - Trades
      summary: Lấy lịch sử giao dịch
      description: 'Truy xuất các giao dịch riêng lẻ. Phạm vi giới hạn: 1-100 (mặc định 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: Lọc theo ví trader
        - name: minAmount
          in: query
          schema:
            type: number
        - name: maxAmount
          in: query
          schema:
            type: number
      responses:
        '200':
          description: Lịch sử giao dịch với phân trang

````