> ## Documentation Index
> Fetch the complete documentation index at: https://alltick.co/apis/llms.txt
> Use this file to discover all available pages before exploring further.

# POST /v1/batch-kline 调试模块

## POST /v1/batch-kline 调试模块


## OpenAPI

````yaml apis/api-reference/openapi-rset-zh.json POST /quote-stock-b-api/v1/batch-kline
openapi: 3.1.0
info:
  title: AllTick REST API 调试
  version: 1.0.0
  description: 依据 AllTick REST API 接口文档配置的 v1 接口调试定义。
servers:
  - url: https://quote.alltick.co
    description: Production
security: []
paths:
  /quote-stock-b-api/v1/batch-kline:
    post:
      summary: 多单产品k线
      operationId: postRsetBatchKline
      parameters:
        - $ref: '#/components/parameters/ApiKey'
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/SymbolKlineRequest'
      responses:
        '200':
          description: 成功响应
components:
  parameters:
    ApiKey:
      name: X-API-Key
      in: header
      required: true
      description: 身份认证令牌
      schema:
        type: string
  schemas:
    SymbolKlineRequest:
      type: object
      required:
        - trace
        - data
      properties:
        trace:
          type: string
          default: test-001
        data:
          type: object
          required:
            - symbol_list
          properties:
            symbol_list:
              type: array
              minItems: 1
              items:
                type: object
                required:
                  - code
                  - kline_type
                  - kline_timestamp_end
                  - query_kline_num
                  - adjust_type
                properties:
                  code:
                    type: string
                    default: 700.HK
                  kline_type:
                    type: integer
                    default: 1
                  kline_timestamp_end:
                    type: integer
                    default: 0
                  query_kline_num:
                    type: integer
                    default: 1
                    maximum: 500
                  adjust_type:
                    type: integer
                    default: 0
      example:
        trace: test-001
        data:
          symbol_list:
            - code: 700.HK
              kline_type: 1
              kline_timestamp_end: 0
              query_kline_num: 1
              adjust_type: 0

````