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

# 获取随机 mint

> 为调用者返回一个新的未使用的 mint 密钥对。可选过滤器
允许平台预生成具有特定
前缀/后缀的虚构地址。




## OpenAPI

````yaml /zh/api-reference/openapi/launch-mint-v1.yaml post /create/get-random-mint
openapi: 3.0.3
info:
  title: Raydium Launch Mint API
  description: 提供 LaunchLab 代币的铸造创建、排行榜、搜索和历史数据访问。支持按名称、符号、钱包创建者和各种筛选选项进行搜索。
  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: 搜索和浏览铸造
  - name: Details
    description: 获取铸造信息
  - name: User Activity
    description: 获取用户创建和交易统计
  - name: Vesting
    description: 查询释放时间表数据
  - name: Configuration
    description: 平台配置和元数据
  - name: Creation
    description: 创建新铸造并提交交易
  - name: Utilities
    description: 健康检查和状态
paths:
  /create/get-random-mint:
    post:
      tags:
        - Creation
      summary: 获取随机 mint
      description: |
        为调用者返回一个新的未使用的 mint 密钥对。可选过滤器
        允许平台预生成具有特定
        前缀/后缀的虚构地址。
      operationId: postCreateGetRandomMint
      requestBody:
        required: false
        content:
          application/json:
            schema:
              type: object
              properties:
                prefix:
                  type: string
                  description: 可选的 base58 前缀，返回的 mint 必须以此开头。
                suffix:
                  type: string
                  description: 可选的 base58 后缀，返回的 mint 必须以此结尾。
                wallet:
                  type: string
                  description: 可选的创建者钱包，用于速率限制。
      responses:
        '200':
          description: 随机 mint
          content:
            application/json:
              schema:
                type: object
                properties:
                  mint:
                    type: string
                    description: Base58 mint 地址。
                  privateKey:
                    type: string
                    description: |
                      mint 的 Base58 密钥。必须在
                      创建交易中签署一次，然后丢弃。

````