> ## 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 デバッグモジュール

> GET /static_info デバッグモジュール

## GET /static\_info デバッグモジュール

<Card title="インターフェース説明へ戻る" href="/apis/apis/ja/api-reference/stock/static-info" />

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


## OpenAPI

````yaml apis/api-reference/openapi-ja.json GET /quote-stock-b-api/static_info
openapi: 3.1.0
info:
  title: AllTick マーケットデータ API
  description: 株式、外国為替、暗号通貨、コモディティのリアルタイム・履歴マーケットデータAPI。
  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: API 認証 Token
          schema:
            type: string
        - name: query
          in: query
          required: true
          description: trace と symbol_list フィールドを含む URL エンコード済み JSON 文字列。
          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: 成功レスポンス
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/StaticInfoResponse'
components:
  schemas:
    StaticInfoResponse:
      type: object
      properties:
        ret:
          type: integer
          description: 戻りコード（200 = 成功）
        msg:
          type: string
          description: レスポンスメッセージ
        trace:
          type: string
          description: リクエスト追跡 ID
        data:
          type: object
          properties:
            static_info_list:
              type: array
              items:
                type: object
                properties:
                  board:
                    type: string
                    description: 株式の所属ボード
                  bps:
                    type: string
                    description: 1 株当たり純資産
                  circulating_shares:
                    type: string
                    description: 流通株式数
                  currency:
                    type: string
                    description: 取引通貨
                  dividend_yield:
                    type: string
                    description: 配当利回り
                  eps:
                    type: string
                    description: 1 株当たり利益
                  eps_ttm:
                    type: string
                    description: 1 株当たり利益 (TTM)
                  exchange:
                    type: string
                    description: 商品が所属する取引所
                  hk_shares:
                    type: string
                    description: 香港株の株式数（香港株のみ）
                  lot_size:
                    type: string
                    description: 1 ロットの株数
                  name_cn:
                    type: string
                    description: 簡体字中国語の商品名
                  name_en:
                    type: string
                    description: 英語の商品名
                  name_hk:
                    type: string
                    description: 繁体字中国語の商品名
                  symbol:
                    type: string
                    description: 商品コード
                  total_shares:
                    type: string
                    description: 総株式数

````