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

# 停复牌信息

### 接口说明

该接口提供全球主要交易所（SSE、NYSE、NASDAQ）的停复牌信息查询，所有接口均返回 JSON 格式数据，按公告时间倒序排列。

```http theme={null}
GET /v1/trading-status/sse/{page}/{size}
GET /v1/trading-status/nyse/{page}/{size}
GET /v1/trading-status/nasdaq/{page}/{size}
```

### 请求示例

```text theme={null}
https://quote.alltick.co/v1/trading-status/sse/{page}/{size}
https://quote.alltick.co/v1/trading-status/nyse/{page}/{size}
https://quote.alltick.co/v1/trading-status/nasdaq/{page}/{size}
```

### 请求参数

| 参数          | 类型      | 必填 | 说明     |
| ----------- | ------- | -- | ------ |
| `X-API-Key` | string  | 是  | 身份认证令牌 |
| `page`      | integer | 是  | 查询页码   |
| `size`      | integer | 是  | 每页数据大小 |

### 响应示例

```json theme={null}
{
  "success": true,
  "timestamp": "2024-01-15T10:30:00",
  "totalCount": 125,
  "data": [{
    "symbol": "600000",
    "symbolName": "浦发银行",
    "haltReason": "重大事项停牌",
    "haltDate": "2024-01-15",
    "haltTime": "09:30:00",
    "haltPeriod": "全天停牌",
    "resumeDate": "2024-01-16",
    "resumeTime": "09:30:00",
    "publishDate": "2024-01-14 18:00:00"
  }]
}
```

### 响应字段说明

| 字段名           | 类型      | 是否必填 | 描述                              |
| ------------- | ------- | ---- | ------------------------------- |
| `success`     | boolean | 是    | 请求是否成功                          |
| `timestamp`   | string  | 是    | 响应时间戳（格式：yyyy-MM-dd’T’HH:mm:ss） |
| `totalCount`  | integer | 是    | 数据总条数                           |
| `data`        | array   | 是    | 停复牌信息列表                         |
| `symbol`      | string  | 否    | 股票代码                            |
| `symbolName`  | string  | 是    | 股票名称                            |
| `haltReason`  | string  | 是    | 停牌原因                            |
| `haltDate`    | string  | 是    | 停牌日期                            |
| `haltTime`    | string  | 是    | 停牌时间                            |
| `haltPeriod`  | string  | 是    | 停牌期限                            |
| `resumeDate`  | string  | 是    | 复牌日期                            |
| `resumeTime`  | string  | 是    | 复牌时间                            |
| `publishDate` | string  | 否    | 公告时间                            |
| `totalPages`  | integer | 否    | 数据总页数（分页查询时返回）                  |
| `currentPage` | integer | 否    | 当前页（分页查询时返回）                    |
| `currentSize` | integer | 否    | 当前页的数据条数（分页查询时返回）               |
