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

# Get random mint

> Return a fresh, unused mint keypair for the caller. Optional filters
let the platform pre-generate vanity addresses with a specific
prefix/suffix.




## OpenAPI

````yaml /api-reference/openapi/launch-mint-v1.yaml post /create/get-random-mint
openapi: 3.0.3
info:
  title: Raydium Launch Mint API
  description: >-
    Provides access to mint creation, leaderboards, search, and historical data
    for LaunchLab tokens. Supports searching by name, symbol, wallet creator,
    and various filtering options.
  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: Search and browse mints
  - name: Details
    description: Retrieve mint information
  - name: User Activity
    description: Get user creation and trading statistics
  - name: Vesting
    description: Query vesting schedule data
  - name: Configuration
    description: Platform configuration and metadata
  - name: Creation
    description: Create new mints and submit transactions
  - name: Utilities
    description: Health checks and status
paths:
  /create/get-random-mint:
    post:
      tags:
        - Creation
      summary: Get random mint
      description: |
        Return a fresh, unused mint keypair for the caller. Optional filters
        let the platform pre-generate vanity addresses with a specific
        prefix/suffix.
      operationId: postCreateGetRandomMint
      requestBody:
        required: false
        content:
          application/json:
            schema:
              type: object
              properties:
                prefix:
                  type: string
                  description: Optional base58 prefix the returned mint must start with.
                suffix:
                  type: string
                  description: Optional base58 suffix the returned mint must end with.
                wallet:
                  type: string
                  description: Optional creator wallet, used for rate-limiting.
      responses:
        '200':
          description: Random mint
          content:
            application/json:
              schema:
                type: object
                properties:
                  mint:
                    type: string
                    description: Base58 mint address.
                  privateKey:
                    type: string
                    description: |
                      Base58 secret key for the mint. Must be signed into the
                      create transaction once and then discarded.

````