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

# Token mithilfe von Ledger-Transaktion anfordern

> Alternative Token-Anforderung für Ledger-signierte Transaktionen. Signiert eine Nachricht im Format `{signText}{time}` innerhalb einer Transaktion.



## OpenAPI

````yaml /de/api-reference/openapi/launch-auth-v1.yaml post /request-token-ledger
openapi: 3.0.3
info:
  title: Raydium Launch Auth API
  description: >-
    Verwaltet die Wallet-Authentifizierung für LaunchLab und Forum APIs. Gibt
    JWT-Token nach Überprüfung von ed25519-Wallet-Signaturen aus. Token sind
    erforderlich, um Kommentare zu posten und Inhalte in der Forum API zu
    verwalten.
  version: 1.0.0
servers:
  - url: https://launch-auth-v1.raydium.io
    description: Mainnet
  - url: https://launch-auth-v1-devnet.raydium.io
    description: Devnet
security: []
tags:
  - name: Token Management
    description: Token-Anforderung und Validierung
  - name: Utilities
    description: Health-Check-Endpoints
paths:
  /request-token-ledger:
    post:
      tags:
        - Token Management
      summary: Token mithilfe von Ledger-Transaktion anfordern
      description: >-
        Alternative Token-Anforderung für Ledger-signierte Transaktionen.
        Signiert eine Nachricht im Format `{signText}{time}` innerhalb einer
        Transaktion.
      operationId: postRequestTokenLedger
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
                - time
                - transaction
                - wallet
              properties:
                time:
                  type: integer
                  description: Unix-Zeitstempel in Sekunden
                  example: 1704067200
                transaction:
                  type: string
                  description: Solana-Transaktion mit signierter Nachricht (base64-codiert)
                wallet:
                  type: string
                  description: Öffentlicher Schlüssel der Solana-Wallet
                  example: 4k3Dyjzvzp8eMZWUXbBCjEvwSvsrFjJqkDsyU5F5oV4
      responses:
        '200':
          description: Token erfolgreich ausgestellt
          content:
            application/json:
              schema:
                type: object
                properties:
                  id:
                    type: string
                  success:
                    type: boolean
                    example: true
                  data:
                    type: object
                    properties:
                      token:
                        type: string

````