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

# Handelshistorie abrufen

> Ruft einzelne Trades ab. Limit-Bereich: 1–100 (Standard: 50).



## OpenAPI

````yaml /de/api-reference/openapi/launch-history-v1.yaml get /trade
openapi: 3.0.3
info:
  title: Raydium Launch History API
  description: >-
    Stellt historische Handelsdaten für LaunchLab-Pools bereit. Umfasst
    Kline-Daten (Kerzen) in 1-Minuten-, 5-Minuten- und 15-Minuten-Intervallen
    sowie einzelne Handelshistorie.
  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-Candlestick-Daten
  - name: Trades
    description: Einzelne Handelshistorie
  - name: Utilities
    description: Zustandsprüfungen
paths:
  /trade:
    get:
      tags:
        - Trades
      summary: Handelshistorie abrufen
      description: 'Ruft einzelne Trades ab. Limit-Bereich: 1–100 (Standard: 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: Nach Trader-Wallet filtern
        - name: minAmount
          in: query
          schema:
            type: number
        - name: maxAmount
          in: query
          schema:
            type: number
      responses:
        '200':
          description: Handelshistorie mit Paginierung

````