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

# 行情快照

> 获取一个或多个交易品种的实时市场行情数据。

## 注意事项

* 最多可同时查询 50 个交易品种
* 时间戳单位为毫秒（UTC）

## 支持的市场

**外汇**、**贵金属**、**指数**、**美股**、**港股**、**A股**、**中国期货**、**加密货币**

示例：

* 外汇：EURUSD、GBPUSD、USDJPY
* 贵金属：XAUUSD、XAGUSD
* 指数：SPX、NDX、DJI
* 美股：AAPL.US、TSLA.US、MSFT.US
* 港股：700.HK、9988.HK、3690.HK
* A股：600519.SH、000001.SZ、920186.BJ
* 中国期货：BU2609、IC2606、AP8888
* 加密货币：BTCUSDT、ETHUSDT、ADAUSDT

## 请求参数

| 参数名     | 是否必须 | 描述                                                                                                       |
| ------- | ---- | -------------------------------------------------------------------------------------------------------- |
| symbols | 是    | 交易产品代码，多个用逗号分隔，最多50个                                                                                     |
| type    | 否    | 产品类型，可选。代码无歧义时无需传递；若返回 `AMBIGUOUS_SYMBOL` 错误，按提示传入对应值即可。可选值：`stock`、`indices`、`crypto`、`forex`、`futures` |

## 返回字段说明

| 字段                          | 说明            |
| --------------------------- | ------------- |
| symbol                      | 交易产品          |
| name                        | 产品名称（如有）      |
| type                        | 产品类型          |
| last\_price                 | 最新成交价         |
| bid\_price                  | 最优买价（如有）      |
| ask\_price                  | 最优卖价（如有）      |
| volume\_24h                 | 24小时成交量       |
| high\_24h                   | 24小时最高价       |
| low\_24h                    | 24小时最低价       |
| price\_change\_24h          | 24小时价格变化      |
| price\_change\_percent\_24h | 24小时价格变化百分比   |
| timestamp                   | 数据时间戳（毫秒，UTC） |


## OpenAPI

````yaml GET /v1/market/ticker
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, China futures, and Crypto via REST and
    WebSocket.
  version: 1.0.2
  contact:
    email: support@tickdb.ai
servers:
  - url: https://api.tickdb.ai
    description: Production server
security:
  - ApiKeyAuth: []
paths:
  /v1/market/ticker:
    get:
      summary: Market Ticker
      description: Get real-time ticker snapshots for one or more symbols
      parameters:
        - name: symbols
          in: query
          required: true
          description: Comma-separated symbols (max 50)
          schema:
            type: string
            default: 700.HK,AAPL.US
            example: 700.HK,AAPL.US
        - 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
              - futures
            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
                        name:
                          type: string
                        type:
                          type: string
                          enum:
                            - stock
                            - indices
                            - crypto
                            - forex
                            - futures
                        last_price:
                          type: string
                        bid_price:
                          type: string
                        ask_price:
                          type: string
                        volume_24h:
                          type: string
                        high_24h:
                          type: string
                        low_24h:
                          type: string
                        price_change_24h:
                          type: string
                        price_change_percent_24h:
                          type: string
                        timestamp:
                          type: integer
                    example:
                      - symbol: 700.HK
                        last_price: '543'
                        volume_24h: '11205874'
                        high_24h: '557'
                        low_24h: '543'
                        price_change_24h: '-9'
                        price_change_percent_24h: '-1.63'
                        timestamp: 1773292807000
                      - symbol: AAPL.US
                        last_price: '260.81'
                        volume_24h: '26218927'
                        high_24h: '262.13'
                        low_24h: '259.55'
                        price_change_24h: '-0.02'
                        price_change_percent_24h: '-0.01'
                        timestamp: 1773259201000
components:
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: X-API-Key

````