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

# Get kline (candlestick) data

> Retrieve OHLC candle data. Limit range: 1-500 (default 300).



## OpenAPI

````yaml /api-reference/openapi/launch-history-v1.yaml get /kline
openapi: 3.0.3
info:
  title: Raydium Launch History API
  description: >-
    Provides historical trading data for LaunchLab pools. Includes kline
    (candle) data at 1-minute, 5-minute, and 15-minute intervals, plus
    individual trade history.
  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 candlestick data
  - name: Trades
    description: Individual trade history
  - name: Utilities
    description: Health checks
paths:
  /kline:
    get:
      tags:
        - Candle Data
      summary: Get kline (candlestick) data
      description: 'Retrieve OHLC candle data. Limit range: 1-500 (default 300).'
      operationId: getKline
      parameters:
        - name: poolId
          in: query
          required: true
          schema:
            type: string
          description: Pool ID (mint address)
        - 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: Pagination token
      responses:
        '200':
          description: Kline data with pagination

````