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

# OHLCV klines for non-US stocks (1min–1m)

> [OpenAPI JSON Spec](/docs/output/v1_stocks_non-us_kline_get.json)
Returns split-adjusted daily or 1-minute bars for non-US tickers in dotted form (e.g. `0700.HK`).
Bars are returned newest-first (descending by time). `start_time` and `end_time` are both inclusive.
Set `interval=1min` to receive 1-minute bars instead of daily bars.
Intraday intervals (5min–4h) are available only for symbols in the 1-minute polling pool; symbols outside it return an empty data array. 1d/1w/1m cover all non-US symbols.



## OpenAPI

````yaml /api-reference/openapi.json get /v1/stocks/non-us/kline
openapi: 3.0.0
info:
  contact: {}
  description: >-
    Welcome to Arrays!


    Arrays is a unified financial data layer for both financial institutions and
    retail users, delivering comprehensive market data across crypto and equity
    markets. Our datasets cover fundamentals, ETFs, options, crypto, and more.


    Visit [arrays.org](https://arrays.org) to request an API key and start your
    free trial. You can explore our full API offerings in the documentation
    below.


    For any questions regarding APIs or pricing, please contact
    support@arrays.org.
  title: Arrays API
  version: '1.0'
servers:
  - url: https://data-tools.prd.arrays.org/api
security: []
paths:
  /v1/stocks/non-us/kline:
    get:
      tags:
        - Stock
      summary: OHLCV klines for non-US stocks (1min–1m)
      description: >-
        [OpenAPI JSON Spec](/docs/output/v1_stocks_non-us_kline_get.json)

        Returns split-adjusted daily or 1-minute bars for non-US tickers in
        dotted form (e.g. `0700.HK`).

        Bars are returned newest-first (descending by time). `start_time` and
        `end_time` are both inclusive.

        Set `interval=1min` to receive 1-minute bars instead of daily bars.

        Intraday intervals (5min–4h) are available only for symbols in the
        1-minute polling pool; symbols outside it return an empty data array.
        1d/1w/1m cover all non-US symbols.
      parameters:
        - description: Non-US ticker in <TICKER>.<EXCHANGE_SUFFIX> form, e.g. 0700.HK
          in: query
          name: symbol
          required: true
          schema:
            type: string
        - description: Unix seconds (inclusive)
          in: query
          name: start_time
          required: true
          schema:
            type: integer
            format: int64
        - description: Unix seconds (inclusive, > start_time)
          in: query
          name: end_time
          required: true
          schema:
            type: integer
            format: int64
        - description: Bar interval
          in: query
          name: interval
          schema:
            type: string
            enum:
              - 1min
              - 5min
              - 15min
              - 30min
              - 1h
              - 4h
              - 1d
              - 1w
              - 1m
            default: 1d
        - description: Max bars (1-10000)
          in: query
          name: limit
          schema:
            type: integer
            format: int32
            default: 500
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                allOf:
                  - $ref: '#/components/schemas/model.APIResponse'
                  - properties:
                      data:
                        items:
                          $ref: '#/components/schemas/model.NonUSStockKlinePoint'
                        type: array
                    type: object
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/model.APIResponse'
        '500':
          description: Internal Server Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/model.APIResponse'
      security:
        - ApiKeyAuth: []
components:
  schemas:
    model.APIResponse:
      properties:
        data: {}
        error:
          $ref: '#/components/schemas/model.APIError'
        metadata: {}
        pagination: {}
        request_id:
          type: string
        success:
          type: boolean
      type: object
    model.NonUSStockKlinePoint:
      properties:
        price_close:
          type: number
        price_high:
          type: number
        price_low:
          type: number
        price_open:
          type: number
        quote_currency:
          type: string
        time_close:
          type: integer
        time_open:
          type: integer
        time_period_end:
          type: string
        time_period_start:
          type: string
        volume_traded:
          type: number
      type: object
    model.APIError:
      properties:
        code:
          example: RESOURCE_NOT_FOUND
          type: string
        details:
          items:
            $ref: '#/components/schemas/model.APIErrorDetail'
          type: array
        docs_url:
          type: string
        examples:
          items:
            type: string
          type: array
        hint:
          type: string
        message:
          example: The requested resource was not found.
          type: string
        suggestions:
          items:
            type: string
          type: array
      type: object
    model.APIErrorDetail:
      properties:
        field:
          type: string
        got:
          type: string
        reason:
          type: string
      type: object
  securitySchemes:
    ApiKeyAuth:
      description: 'API Key authentication. Example: "your-api-key-here"'
      in: header
      name: X-API-Key
      type: apiKey

````