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

# 무작위 민트 가져오기

> 호출자를 위한 신규 미사용 민트 키페어를 반환합니다. 선택적 필터를
사용하면 플랫폼이 특정 접두사/접미사가 있는 베니티 주소를
미리 생성할 수 있습니다.




## OpenAPI

````yaml /ko/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: 무작위 민트 가져오기
      description: |
        호출자를 위한 신규 미사용 민트 키페어를 반환합니다. 선택적 필터를
        사용하면 플랫폼이 특정 접두사/접미사가 있는 베니티 주소를
        미리 생성할 수 있습니다.
      operationId: postCreateGetRandomMint
      requestBody:
        required: false
        content:
          application/json:
            schema:
              type: object
              properties:
                prefix:
                  type: string
                  description: 반환된 민트가 시작해야 하는 선택적 base58 접두사입니다.
                suffix:
                  type: string
                  description: 반환된 민트가 끝나야 하는 선택적 base58 접미사입니다.
                wallet:
                  type: string
                  description: 속도 제한에 사용되는 선택적 생성자 지갑입니다.
      responses:
        '200':
          description: 무작위 민트
          content:
            application/json:
              schema:
                type: object
                properties:
                  mint:
                    type: string
                    description: Base58 민트 주소입니다.
                  privateKey:
                    type: string
                    description: |
                      민트용 base58 시크릿 키입니다. 생성 트랜잭션에 한 번 서명한 후
                      폐기해야 합니다.

````