> ## 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-Hant/api-reference/openapi/launch-mint-v1.yaml post /create/get-random-mint
openapi: 3.0.3
info:
  title: Raydium LaunchLab 鑄幣 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 格式秘密金鑰。必須在
                      建立交易中簽署一次，然後丟棄。

````