query.sse.com.cn/commonQuery.do (sqlId: CO).
Returns a table with columns: 公司代码, 公司名称, 日期, 开盘价, 最高价.
Agent 可以从这个页面获取什么数据,以及怎样获取。
JSONP 数据接口,sqlId = CO。返回 JSON 数组。
| Name | Type | Description | |
|---|---|---|---|
| sqlId | string | REQUIRED | SQL query identifier: CO |
| jsonCallBack | string | optional | JSONP callback name. Omit for raw JSON. |
curl "https://query.sse.com.cn/commonQuery.do?sqlId=CO&isPagination=false"
JSON with table data. Columns:
| Column | Type | Example | Description |
|---|---|---|---|
| 公司代码 | number | 688816 | 公司代码 |
| 公司名称 | string | 易思维(杭州)科技股份有限公司 | 公司名称 |
| 日期 | number | 2026-02-11 | 日期 |
| 开盘价 | number | 100 | 开盘价 |
| 最高价 | number | 107.98 | 最高价 |
| 最低价 | number | 86 | 最低价 |
| 收盘价 | number | 88.92 | 收盘价 |
| 成交量(万股/万份) | number | 1424.59 | 成交量(万股/万份) |
| 成交额(万元) | number | 131544.91 | 成交额(万元) |
| 日换手率 | number | 14.25 | 日换手率 |
如果你需要通过浏览器自动化操作此页面,以下是页面的内部结构。
window.statisticalOverviewstatisticalOverview.getstatisticalOverviewList()#inputCode — 6位代码 / 简称input.form-control.sse_input[name="undefined"][type="text"] — 开始时间 至 结束时间如果直调 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 自动提交的调用记录与注意事项。