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

# Intraday Data

> Get intraday time-series data for stocks, including minute-by-minute price, volume, and turnover information.

## Notes

* Data covers from market open to current time of the trading day
* Returns empty array during non-trading hours

## Supported Markets

**US Stocks**, **HK Stocks**, **A-Shares**

Examples:

* US Stocks: AAPL.US, TSLA.US, MSFT.US
* HK Stocks: 700.HK, 9988.HK, 3690.HK
* A-Shares: 000001.SH, 000001.SZ

## Request Parameters

| Parameter | Required | Description                                                                                                                                                                                    |
| --------- | -------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| symbols   | Yes      | Stock symbol codes, comma-separated, max 50                                                                                                                                                    |
| type      | No       | Symbol type, optional. Not required when the symbol is unambiguous; if the API returns an `AMBIGUOUS_SYMBOL` error, pass the value as indicated. Values: `stock`, `indices`, `crypto`, `forex` |

## Response Fields

| Field Name    | Description                     |
| ------------- | ------------------------------- |
| symbol        | Trading Symbol                  |
| lines         | Intraday Data                   |
| └─ timestamp  | Start Time of Current Minute    |
| └─ price      | Closing Price of Current Minute |
| └─ volume     | Trading Volume                  |
| └─ turnover   | Trading Turnover                |
| └─ avg\_price | Average Price                   |


## OpenAPI

````yaml GET /v1/market/intraday
openapi: 3.0.0
info:
  title: TickDB API
  description: >-
    Unified real-time market data API — one connection for Forex, indices, US
    stocks, HK stocks, A-shares, and Crypto via REST and WebSocket.
  version: 1.0.1
  contact:
    email: support@tickdb.ai
servers:
  - url: https://api.tickdb.ai
    description: Production server
security:
  - ApiKeyAuth: []
paths:
  /v1/market/intraday:
    get:
      summary: Intraday Data
      description: Get intraday time-series data for stocks
      parameters:
        - name: symbols
          in: query
          required: true
          description: Comma-separated stock symbols (max 50)
          schema:
            type: string
            default: 700.HK,9988.HK
            example: 700.HK,9988.HK
        - name: type
          in: query
          required: false
          description: >-
            Symbol type, optional. Not required when the symbol is unambiguous;
            if the API returns an AMBIGUOUS_SYMBOL error, pass the value as
            indicated
          schema:
            type: string
            enum:
              - stock
              - indices
              - crypto
              - forex
            example: stock
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                type: object
                properties:
                  code:
                    type: integer
                    example: 0
                  message:
                    type: string
                    example: success
                  data:
                    type: array
                    items:
                      type: object
                      properties:
                        symbol:
                          type: string
                          example: 700.HK
                        lines:
                          type: array
                          items:
                            type: object
                            properties:
                              timestamp:
                                type: integer
                                example: 1773192600000
                                description: Timestamp in milliseconds
                              price:
                                type: string
                                example: '568'
                                description: Current price
                              volume:
                                type: integer
                                example: 7294905
                                description: Cumulative volume
                              turnover:
                                type: string
                                example: '4181560679.96'
                                description: Cumulative turnover
                              avg_price:
                                type: string
                                example: '573.216605'
                                description: Average price
              examples:
                single_symbol:
                  summary: Single symbol response
                  value:
                    code: 0
                    message: success
                    data:
                      - symbol: 700.HK
                        lines:
                          - timestamp: 1773192600000
                            price: '568'
                            volume: 7294905
                            turnover: '4181560679.96'
                            avg_price: '573.216605'
components:
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: X-API-Key

````