> ## 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 /ru/api-reference/openapi/launch-history-v1.yaml get /kline
openapi: 3.0.3
info:
  title: API истории LaunchLab Raydium
  description: >-
    Предоставляет исторические данные торговли для пулов LaunchLab. Включает
    данные kline (свечи) с интервалами 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: Получить данные kline (свечей)
      description: 'Получите данные OHLC свечей. Диапазон лимита: 1–500 (по умолчанию 300).'
      operationId: getKline
      parameters:
        - name: poolId
          in: query
          required: true
          schema:
            type: string
          description: Pool 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 с пагинацией

````