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

> GET /trade-tick デバッグモジュール

## GET /trade-tick デバッグモジュール

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

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


## OpenAPI

````yaml apis/api-reference/openapi-ja.json GET /quote-stock-b-api/trade-tick
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/trade-tick:
    get:
      summary: Stock Latest Trade Query
      description: >-
        Query latest trade price (tick data) for stock products. Supports batch
        querying multiple products.
      operationId: getStockTradeTick
      parameters:
        - name: token
          in: query
          required: true
          description: API認証トークン
          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/TradeTickResponse'
components:
  schemas:
    TradeTickResponse:
      type: object
      properties:
        ret:
          type: integer
        msg:
          type: string
        trace:
          type: string
        data:
          type: object
          properties:
            tick_list:
              type: array
              items:
                type: object
                properties:
                  code:
                    type: string
                    description: 製品コード
                  seq:
                    type: string
                    description: シーケンス番号
                  tick_time:
                    type: string
                    description: タイムスタンプ（ミリ秒）
                  price:
                    type: string
                    description: 約定価格
                  volume:
                    type: string
                    description: 約定数量
                  turnover:
                    type: string
                    description: 約定金額
                  trade_direction:
                    type: integer
                    description: 取引方向（0=中立, 1=買い, 2=売り）

````