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

# Submit mint creation

> Register the off-chain metadata for a new LaunchLab mint before its
on-chain create transaction is sent. The platform stores the supplied
name/symbol/uri/social-links keyed by mint, so the UI can display
them while the bonding curve is live.




## OpenAPI

````yaml /api-reference/openapi/launch-mint-v1.yaml post /create/mint-info
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/mint-info:
    post:
      tags:
        - Creation
      summary: Submit mint creation
      description: |
        Register the off-chain metadata for a new LaunchLab mint before its
        on-chain create transaction is sent. The platform stores the supplied
        name/symbol/uri/social-links keyed by mint, so the UI can display
        them while the bonding curve is live.
      operationId: postCreateMintInfo
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
                - mint
                - name
                - symbol
                - wallet
              properties:
                mint:
                  type: string
                  description: Mint pubkey (base58) created on-chain.
                name:
                  type: string
                  description: Display name shown in the LaunchLab UI.
                  example: My Memecoin
                symbol:
                  type: string
                  description: Ticker symbol.
                  example: MEME
                description:
                  type: string
                  description: Long-form description.
                imageUri:
                  type: string
                  description: HTTPS URL or IPFS URI for the token icon.
                website:
                  type: string
                twitter:
                  type: string
                telegram:
                  type: string
                platformId:
                  type: string
                  description: Platform pubkey that hosts this launch.
                wallet:
                  type: string
                  description: Creator wallet (base58) — must match the on-chain creator.
      responses:
        '200':
          description: Accepted

````