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

# キャンドル（OHLC）データを取得

> OHLC キャンドルデータを取得します。リミット範囲：1～500（デフォルト300）。



## OpenAPI

````yaml /ja/api-reference/openapi/launch-history-v1.yaml get /kline
openapi: 3.0.3
info:
  title: Raydium Launch History API
  description: LaunchLabプールの過去トレーディングデータを提供します。1分・5分・15分間隔のキャンドルデータと個別トレード履歴が含まれます。
  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: キャンドル（OHLC）データを取得
      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: ページネーション付きキャンドルデータ

````