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

> GET /api/suspension/nasdaq デバッグモジュール

## GET /api/suspension/nasdaq デバッグモジュール

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

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


## OpenAPI

````yaml apis/api-reference/openapi-ja.json GET /api/suspension/nasdaq
openapi: 3.1.0
info:
  title: AllTick マーケットデータ API
  description: 株式、外国為替、暗号通貨、コモディティのリアルタイム・履歴マーケットデータAPI。
  version: 1.0.0
servers:
  - url: https://quote.alltick.co
    description: Production
security: []
paths:
  /api/suspension/nasdaq:
    get:
      summary: NASDAQ Suspension Query
      description: NASDAQ の全売買停止・再開情報を取得します。
      operationId: getNasdaqSuspension
      parameters:
        - name: token
          in: query
          required: true
          description: ユーザープラン Token
          schema:
            type: string
        - name: page
          in: query
          required: false
          description: 照会ページ番号
          schema:
            type: integer
            default: 1
          example: 1
        - name: size
          in: query
          required: false
          description: 1 ページあたりのデータ件数
          schema:
            type: integer
            default: 10
          example: 10
      responses:
        '200':
          description: 成功レスポンス
          content:
            application/json:
              schema:
                type: object

````