query.sse.com.cn/commonQuery.do (sqlId: C).
Returns a table with columns: 交易日期, 证券代码, 证券简称, 成交价, 成交金额(万元).
Agent 可以从这个页面获取什么数据,以及怎样获取。
JSONP 数据接口,sqlId = C。返回 JSON 数组。
| Name | Type | Description | |
|---|---|---|---|
| sqlId | string | REQUIRED | SQL query identifier: C |
| jsonCallBack | string | optional | JSONP callback name. Omit for raw JSON. |
curl "https://query.sse.com.cn/commonQuery.do?sqlId=C&isPagination=false"
JSON with table data. Columns:
| Column | Type | Example | Description |
|---|---|---|---|
| 交易日期 | number | 2026-03-03 | 交易日期 |
| 证券代码 | number | 360008 | 证券代码 |
| 证券简称 | string | 浦发优2 | 证券简称 |
| 成交价 | number | 103.76 | 成交价 |
| 成交金额(万元) | number | 2386.48 | 成交金额(万元) |
| 成交量(万股) | number | 23 | 成交量(万股) |
| 买入营业部 | string | 兴业证券股份有限公司广东分公司 | 买入营业部 |
| 卖出营业部 | string | 中国银河证券股份有限公司北京安贞门证券营业部 | 卖出营业部 |
如果你需要通过浏览器自动化操作此页面,以下是页面的内部结构。
window.statisticalOverviewstatisticalOverview.getstatisticalOverviewList()如果直调 API 受阻,以下 action steps 可复现数据获取:
// Trigger data load statisticalOverview.getstatisticalOverviewList() // 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 自动提交的调用记录与注意事项。