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

# 인증 토큰 검증

> 토큰이 여전히 유효한지 확인합니다. 만료 시점이 임박한 경우 토큰 수명을 연장합니다.



## OpenAPI

````yaml /ko/api-reference/openapi/launch-auth-v1.yaml get /check-token
openapi: 3.0.3
info:
  title: Raydium Launch Auth API
  description: >-
    LaunchLab 및 Forum API를 위한 지갑 인증을 관리합니다. ed25519 지갑 서명을 검증한 후 JWT 토큰을 발급합니다.
    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: 인증 토큰 요청 및 검증
  - name: Utilities
    description: 상태 확인 엔드포인트
paths:
  /check-token:
    get:
      tags:
        - Token Management
      summary: 인증 토큰 검증
      description: 토큰이 여전히 유효한지 확인합니다. 만료 시점이 임박한 경우 토큰 수명을 연장합니다.
      operationId: getCheckToken
      parameters:
        - name: token
          in: query
          required: true
          schema:
            type: string
        - name: wallet
          in: query
          required: true
          schema:
            type: string
      responses:
        '200':
          description: 토큰이 유효함
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                    example: true
                  data:
                    type: string
                    example: OK
        '400':
          description: 토큰이 유효하지 않거나 만료됨

````