> ## 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 /v1/trading-status/nyse 调试模块

## GET /v1/trading-status/nyse 调试模块


## OpenAPI

````yaml apis/api-reference/openapi-rset-zh.json GET /quote-stock-b-api/v1/trading-status/nyse/{page}/{size}
openapi: 3.1.0
info:
  title: AllTick REST API 调试
  version: 1.0.0
  description: 依据 AllTick REST API 接口文档配置的 v1 接口调试定义。
servers:
  - url: https://quote.alltick.co
    description: Production
security: []
paths:
  /quote-stock-b-api/v1/trading-status/nyse/{page}/{size}:
    get:
      summary: 纽约证券交易所停复牌信息
      operationId: getRsetSuspensionNyse
      parameters:
        - $ref: '#/components/parameters/ApiKey'
        - $ref: '#/components/parameters/Page'
        - $ref: '#/components/parameters/Size'
      responses:
        '200':
          description: 成功响应
components:
  parameters:
    ApiKey:
      name: X-API-Key
      in: header
      required: true
      description: 身份认证令牌
      schema:
        type: string
    Page:
      name: page
      in: path
      required: true
      schema:
        type: integer
        default: 1
    Size:
      name: size
      in: path
      required: true
      schema:
        type: integer
        default: 20

````