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

# GET /static_info Debug Module

> This page explains GET /static_info Debug Module for AllTick API, including integration context, parameters, response fields and usage notes for real-time market data workflows.

## GET /static\_info Debug Module

<Card title="Back to Interface Description" href="/apis/apis/en/api-reference/stock/static-info" />

<script src="/apis/seo-keywords.js" />


## OpenAPI

````yaml apis/api-reference/openapi.json GET /quote-stock-b-api/static_info
openapi: 3.1.0
info:
  title: AllTick Market Data API
  description: >-
    Real-time and historical market data API for stocks, forex,
    cryptocurrencies, and commodities.
  version: 1.0.0
servers:
  - url: https://quote.alltick.co
    description: Production
security: []
paths:
  /quote-stock-b-api/static_info:
    get:
      summary: Stock Static Info Query
      description: >-
        Batch query basic product information for US stocks, HK stocks, and
        A-shares.
      operationId: getStockStaticInfo
      parameters:
        - name: token
          in: query
          required: true
          description: Your API authentication token
          schema:
            type: string
        - name: query
          in: query
          required: true
          description: URL-encoded JSON string containing trace and symbol_list fields.
          schema:
            type: string
            default: >-
              {"trace":"abc-123","data":{"symbol_list":[{"code":"700.HK"},{"code":"AAPL.US"}]}}
          example: >-
            {"trace":"abc-123","data":{"symbol_list":[{"code":"700.HK"},{"code":"AAPL.US"}]}}
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/StaticInfoResponse'
components:
  schemas:
    StaticInfoResponse:
      type: object
      properties:
        ret:
          type: integer
          description: Return code (200 = success)
        msg:
          type: string
          description: Response message
        trace:
          type: string
          description: Request trace ID
        data:
          type: object
          properties:
            static_info_list:
              type: array
              items:
                type: object
                properties:
                  board:
                    type: string
                    description: Stock board
                  bps:
                    type: string
                    description: Book value per share
                  circulating_shares:
                    type: string
                    description: Circulating shares
                  currency:
                    type: string
                    description: Trading currency
                  dividend_yield:
                    type: string
                    description: Dividend yield
                  eps:
                    type: string
                    description: Earnings per share
                  eps_ttm:
                    type: string
                    description: Earnings per share (TTM)
                  exchange:
                    type: string
                    description: Exchange to which the product belongs
                  hk_shares:
                    type: string
                    description: Hong Kong stock shares (Hong Kong stocks only)
                  lot_size:
                    type: string
                    description: Shares per lot
                  name_cn:
                    type: string
                    description: Simplified Chinese product name
                  name_en:
                    type: string
                    description: English product name
                  name_hk:
                    type: string
                    description: Traditional Chinese product name
                  symbol:
                    type: string
                    description: Product code
                  total_shares:
                    type: string
                    description: Total shares

````