公告详情查询¶
来源同步:
/Users/mac/Projects/chatgpt-codex/doc/api_Notice.md所属接口集:
公告信息
请求 URL¶
GET /v1/api/notice/detail
认证方式¶
Bearer Token(详见 认证与签名)
接口概述¶
根据公告 ID 查询单条公告的完整详情,包括公告正文内容。
请求参数¶
| 参数 | 类型 | 必填 | 说明 |
|---|---|---|---|
| id | int | 是 | 公告 ID |
接口说明¶
- 返回公告的完整内容(
notice_content),列表接口不包含此字段
响应格式示例¶
{
"data": {
"id": 12345,
"art_code": "AN20260113001",
"stock_code": "600519",
"stock_name": "贵州茅台",
"notice_title": "2025年度业绩预告",
"notice_type": "业绩预告",
"notice_content": "<p>公告正文HTML内容...</p>",
"notice_date": "2026-01-13",
"detail_url": "http://www.cninfo.com.cn/...",
"updated_at": "2026-01-13T08:00:00"
}
}
返回状态¶
| 状态码 | 说明 |
|---|---|
| 200 | 成功 |
| 400 | 参数错误(缺少 id) |
| 401 | 未认证 |
| 403 | 无权限 |
| 404 | 公告不存在 |