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

# Kline(캔들스틱) 데이터 조회

> OHLC 캔들 데이터를 조회합니다. 범위 제한: 1-500 (기본값 300).



## OpenAPI

````yaml /ko/api-reference/openapi/launch-history-v1.yaml get /kline
openapi: 3.0.3
info:
  title: Raydium 런칭 히스토리 API
  description: >-
    LaunchLab 풀의 과거 거래 데이터를 제공합니다. 1분, 5분, 15분 단위의 kline(캔들) 데이터와 개별 거래 이력을
    포함합니다.
  version: 1.0.0
servers:
  - url: https://launch-history-v1.raydium.io
    description: Mainnet
  - url: https://launch-history-v1-devnet.raydium.io
    description: Devnet
security: []
tags:
  - name: Candle Data
    description: OHLC 캔들스틱 데이터
  - name: Trades
    description: 개별 거래 이력
  - name: Utilities
    description: 헬스 체크
paths:
  /kline:
    get:
      tags:
        - Candle Data
      summary: Kline(캔들스틱) 데이터 조회
      description: 'OHLC 캔들 데이터를 조회합니다. 범위 제한: 1-500 (기본값 300).'
      operationId: getKline
      parameters:
        - name: poolId
          in: query
          required: true
          schema:
            type: string
          description: 풀 ID (민트 주소)
        - name: interval
          in: query
          required: true
          schema:
            type: string
            enum:
              - 1m
              - 5m
              - 15m
        - name: limit
          in: query
          schema:
            type: integer
            default: 300
            minimum: 1
            maximum: 500
        - name: nextPageKey
          in: query
          schema:
            type: string
          description: 페이지네이션 토큰
      responses:
        '200':
          description: 페이지네이션이 포함된 Kline 데이터

````