> ## 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 get /vesting/by/pool
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:
  /vesting/by/pool:
    get:
      tags:
        - Vesting
      summary: 풀 베스팅 가져오기
      operationId: getVestingByPool
      parameters:
        - name: id
          in: query
          required: true
          schema:
            type: string
      responses:
        '200':
          description: 풀 베스팅

````