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

# Request authentication token with signature

> Signs a message with format `{signText}{time}` where signText is "Sign in to raydium.io: " and time is the current Unix timestamp in seconds. The wallet must sign this message and submit the signature to receive a JWT token.



## OpenAPI

````yaml /api-reference/openapi/launch-auth-v1.yaml post /request-token
openapi: 3.0.3
info:
  title: Raydium Launch Auth API
  description: >-
    Manages wallet authentication for LaunchLab and Forum APIs. Issues JWT
    tokens after verifying ed25519 wallet signatures. Tokens are required to
    post comments and manage content on the Forum API.
  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: Request and validate authentication tokens
  - name: Utilities
    description: Health check endpoints
paths:
  /request-token:
    post:
      tags:
        - Token Management
      summary: Request authentication token with signature
      description: >-
        Signs a message with format `{signText}{time}` where signText is "Sign
        in to raydium.io: " and time is the current Unix timestamp in seconds.
        The wallet must sign this message and submit the signature to receive a
        JWT token.
      operationId: postRequestToken
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
                - time
                - signature
                - wallet
              properties:
                time:
                  type: integer
                  description: Current Unix timestamp in seconds when message was signed
                  example: 1704067200
                signature:
                  type: string
                  description: Ed25519 signature of the message (base58 encoded)
                  example: 3veiKZ6IHo7jrz9XdwLd8KvvP2pinCtjJXWe6MGNDUjT...
                wallet:
                  type: string
                  description: Solana wallet public key
                  example: 4k3Dyjzvzp8eMZWUXbBCjEvwSvsrFjJqkDsyU5F5oV4
      responses:
        '200':
          description: Token issued successfully
          content:
            application/json:
              schema:
                type: object
                properties:
                  id:
                    type: string
                  success:
                    type: boolean
                    example: true
                  data:
                    type: object
                    properties:
                      token:
                        type: string
        '400':
          description: Invalid request parameters
          content:
            application/json:
              schema:
                type: object
                properties:
                  id:
                    type: string
                  success:
                    type: boolean
                    example: false
                  data:
                    type: object
                    properties:
                      msg:
                        type: string
                        example: Invalid signature

````