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

# Lấy mint ngẫu nhiên

> Trả về một keypair mint mới, chưa sử dụng cho người gọi. Các bộ lọc tùy chọn cho phép nền tảng tạo trước các địa chỉ vanity với tiền tố/hậu tố cụ thể.




## OpenAPI

````yaml /vi/api-reference/openapi/launch-mint-v1.yaml post /create/get-random-mint
openapi: 3.0.3
info:
  title: API Mint LaunchLab của Raydium
  description: >-
    Cung cấp quyền truy cập để tạo mint, bảng xếp hạng, tìm kiếm và dữ liệu lịch
    sử cho các token LaunchLab. Hỗ trợ tìm kiếm theo tên, ký hiệu, ví người tạo
    và các tùy chọn lọc khác nhau.
  version: 1.0.0
servers:
  - url: https://launch-mint-v1.raydium.io
    description: Mainnet
  - url: https://launch-mint-v1-devnet.raydium.io
    description: Devnet
security: []
tags:
  - name: Discovery
    description: Tìm kiếm và duyệt mint
  - name: Details
    description: Lấy thông tin mint
  - name: User Activity
    description: Nhận thống kê tạo mint và giao dịch của người dùng
  - name: Vesting
    description: Truy vấn dữ liệu lịch phát hành
  - name: Configuration
    description: Cấu hình nền tảng và siêu dữ liệu
  - name: Creation
    description: Tạo mint mới và gửi giao dịch
  - name: Utilities
    description: Kiểm tra sức khỏe và trạng thái
paths:
  /create/get-random-mint:
    post:
      tags:
        - Creation
      summary: Lấy mint ngẫu nhiên
      description: >
        Trả về một keypair mint mới, chưa sử dụng cho người gọi. Các bộ lọc tùy
        chọn cho phép nền tảng tạo trước các địa chỉ vanity với tiền tố/hậu tố
        cụ thể.
      operationId: postCreateGetRandomMint
      requestBody:
        required: false
        content:
          application/json:
            schema:
              type: object
              properties:
                prefix:
                  type: string
                  description: >-
                    Tiền tố base58 tùy chọn mà mint được trả về phải bắt đầu
                    bằng.
                suffix:
                  type: string
                  description: >-
                    Hậu tố base58 tùy chọn mà mint được trả về phải kết thúc
                    bằng.
                wallet:
                  type: string
                  description: Ví người tạo tùy chọn, dùng để giới hạn tốc độ.
      responses:
        '200':
          description: Mint ngẫu nhiên
          content:
            application/json:
              schema:
                type: object
                properties:
                  mint:
                    type: string
                    description: Địa chỉ mint base58.
                  privateKey:
                    type: string
                    description: >
                      Khóa bí mật base58 cho mint. Phải được ký vào giao dịch
                      tạo một lần rồi bị hủy.

````