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

# 민트 생성 제출

> 온체인 생성 트랜잭션이 전송되기 전에 새로운 LaunchLab 민트의 오프체인 메타데이터를 등록합니다. 플랫폼은 제공된 이름/심볼/uri/소셜 링크를 민트별로 저장하므로, UI에서 보딩 곡선이 활성화되어 있는 동안 이를 표시할 수 있습니다.



## OpenAPI

````yaml /ko/api-reference/openapi/launch-mint-v1.yaml post /create/mint-info
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/mint-info:
    post:
      tags:
        - Creation
      summary: 민트 생성 제출
      description: >-
        온체인 생성 트랜잭션이 전송되기 전에 새로운 LaunchLab 민트의 오프체인 메타데이터를 등록합니다. 플랫폼은 제공된
        이름/심볼/uri/소셜 링크를 민트별로 저장하므로, UI에서 보딩 곡선이 활성화되어 있는 동안 이를 표시할 수 있습니다.
      operationId: postCreateMintInfo
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
                - mint
                - name
                - symbol
                - wallet
              properties:
                mint:
                  type: string
                  description: 온체인에서 생성된 민트 공개키(base58)입니다.
                name:
                  type: string
                  description: LaunchLab UI에 표시되는 표시 이름입니다.
                  example: My Memecoin
                symbol:
                  type: string
                  description: 티커 심볼입니다.
                  example: MEME
                description:
                  type: string
                  description: 긴 형식의 설명입니다.
                imageUri:
                  type: string
                  description: 토큰 아이콘의 HTTPS URL 또는 IPFS URI입니다.
                website:
                  type: string
                twitter:
                  type: string
                telegram:
                  type: string
                platformId:
                  type: string
                  description: 이 출시를 호스팅하는 플랫폼 공개키입니다.
                wallet:
                  type: string
                  description: 생성자 지갑(base58) — 온체인 생성자와 일치해야 합니다.
      responses:
        '200':
          description: Accepted

````