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

# Xác thực token xác thực

> Xác minh rằng token vẫn còn hợp lệ. Cũng kéo dài thời gian sống của token nếu sắp hết hạn.



## OpenAPI

````yaml /vi/api-reference/openapi/launch-auth-v1.yaml get /check-token
openapi: 3.0.3
info:
  title: API Xác Thực Raydium Launch
  description: >-
    Quản lý xác thực ví cho các API LaunchLab và Forum. Cấp các token JWT sau
    khi xác minh chữ ký ví ed25519. Token là bắt buộc để đăng bình luận và quản
    lý nội dung trên API Forum.
  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: Yêu cầu và xác thực token xác thực
  - name: Utilities
    description: Các endpoint kiểm tra tình trạng
paths:
  /check-token:
    get:
      tags:
        - Token Management
      summary: Xác thực token xác thực
      description: >-
        Xác minh rằng token vẫn còn hợp lệ. Cũng kéo dài thời gian sống của
        token nếu sắp hết hạn.
      operationId: getCheckToken
      parameters:
        - name: token
          in: query
          required: true
          schema:
            type: string
        - name: wallet
          in: query
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Token hợp lệ
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                    example: true
                  data:
                    type: string
                    example: OK
        '400':
          description: Token không hợp lệ hoặc đã hết hạn

````