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

# Ticker Snapshot

> Retrieve real-time market ticker data for one or more trading symbols.

## Notes

* Maximum 50 symbols per request
* Timestamp in milliseconds (UTC)

## Supported Markets

**Forex**, **Metals**, **Indices**, **US Stocks**, **HK Stocks**, **A-Shares**, **China Futures**, **Crypto**

Examples:

* Forex: EURUSD, GBPUSD, USDJPY
* Metals: XAUUSD, XAGUSD
* Indices: SPX, NDX, DJI
* US Stocks: AAPL.US, TSLA.US, MSFT.US
* HK Stocks: 700.HK, 9988.HK, 3690.HK
* A-Shares: 600519.SH, 000001.SZ, 920186.BJ
* China Futures: BU2609, IC2606, AP8888
* Crypto: BTCUSDT, ETHUSDT, ADAUSDT

## Request Parameters

| Parameter | Required | Description                                                                                                                                                                                               |
| --------- | -------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| symbols   | Yes      | Trading 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`, `futures` |

## Response Fields

| Field                       | Description                        |
| --------------------------- | ---------------------------------- |
| symbol                      | Trading Symbol                     |
| name                        | Product name, when available       |
| type                        | Product type                       |
| last\_price                 | Last traded price                  |
| bid\_price                  | Best bid price, when available     |
| ask\_price                  | Best ask price, when available     |
| volume\_24h                 | 24-hour trading volume             |
| high\_24h                   | 24-hour highest price              |
| low\_24h                    | 24-hour lowest price               |
| price\_change\_24h          | 24-hour price change               |
| price\_change\_percent\_24h | 24-hour price change percentage    |
| timestamp                   | Data timestamp (milliseconds, 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

````