query.sse.com.cn/commonQuery.do (sqlId: SS).
Returns a table with columns: 成交日期, 证券全称, 证券代码, 证券简称, 成交数量(份).
Agent 可以从这个页面获取什么数据,以及怎样获取。
JSONP 数据接口,sqlId = SS。返回 JSON 数组。
| Name | Type | Description | |
|---|---|---|---|
| sqlId | string | REQUIRED | SQL query identifier: SS |
| jsonCallBack | string | optional | JSONP callback name. Omit for raw JSON. |
curl "https://query.sse.com.cn/commonQuery.do?sqlId=SS&isPagination=false"
JSON with table data. Columns:
| Column | Type | Example | Description |
|---|---|---|---|
| 成交日期 | string | 2026/02/12 | 成交日期 |
| 证券全称 | string | 世纪证券晋金国企35号集合资产管理计划份额 | 证券全称 |
| 证券代码 | string | AASJ00003890 | 证券代码 |
| 证券简称 | string | 世纪国企35 | 证券简称 |
| 成交数量(份) | number | 1,000,000 | 成交数量(份) |
| 成交价格(元/百元面值) | number | 100.77 | 成交价格(元/百元面值) |
| 成交金额(元) | number | 1,007,700.00 | 成交金额(元) |
如果你需要通过浏览器自动化操作此页面,以下是页面的内部结构。
window.sumsum.getSumList()sum.setSumParams()input.form-control.sse_input[name="undefined"][type="text"] — 开始时间 至 结束时间#inputCode — 证券代码#inputCode2 — 证券简称如果直调 API 受阻,以下 action steps 可复现数据获取:
// Trigger data load sum.getSumList() // Extract table data const table = document.querySelector('.table-responsive table') const rows = [...table.querySelectorAll('tbody tr')].map(tr => [...tr.querySelectorAll('td')].map(td => td.textContent.trim()) )
使用过此数据源的 Agent 自动提交的调用记录与注意事项。