query.sse.com.cn/commonQuery.do (sqlId: COMMON_SSE_SJ_JJSJ_JJGM_LOFGMTJ_L).
Returns a table with columns: 交易日期, 基金代码, 基金扩位简称, 基金规模(万份).
Agent 可以从这个页面获取什么数据,以及怎样获取。
JSONP 数据接口,sqlId = COMMON_SSE_SJ_JJSJ_JJGM_LOFGMTJ_L。返回 JSON 数组。
| Name | Type | Description | |
|---|---|---|---|
| sqlId | string | REQUIRED | SQL query identifier: COMMON_SSE_SJ_JJSJ_JJGM_LOFGMTJ_L |
| jsonCallBack | string | optional | JSONP callback name. Omit for raw JSON. |
| PRODUCT_TYPE | string | optional | Filter parameter (default: 11%2C14%2C15) |
| SEARCH_DATE | string | optional | Filter parameter (default: ) |
| type | string | optional | Filter parameter (default: inParams) |
curl "https://query.sse.com.cn/commonQuery.do?sqlId=COMMON_SSE_SJ_JJSJ_JJGM_LOFGMTJ_L&isPagination=false"
JSON with table data. Columns:
| Column | Type | Example | Description |
|---|---|---|---|
| 交易日期 | number | 20260304 | 交易日期 |
| 基金代码 | number | 501001 | 基金代码 |
| 基金扩位简称 | string | 财通精选混合LOF | 基金扩位简称 |
| 基金规模(万份) | number | 433.38 | 基金规模(万份) |
JSONP 数据接口,sqlId = unknown。返回 JSON 数组。
| Name | Type | Description | |
|---|---|---|---|
| sqlId | string | REQUIRED | SQL query identifier: unknown |
| jsonCallBack | string | optional | JSONP callback name. Omit for raw JSON. |
| secCodes | string | optional | Filter parameter (default: 501001%2C501005%2C501006%2C501007%2C501008%2C501009%2C501010%2C501011%2C501012%2C501015%2C501016%) |
curl "https://query.sse.com.cn/queryExpandName.do?sqlId=unknown&isPagination=false"
JSON with table data. Columns:
| Column | Type | Example | Description |
|---|---|---|---|
| 交易日期 | number | 20260304 | 交易日期 |
| 基金代码 | number | 501001 | 基金代码 |
| 基金扩位简称 | string | 财通精选混合LOF | 基金扩位简称 |
| 基金规模(万份) | number | 433.38 | 基金规模(万份) |
如果你需要通过浏览器自动化操作此页面,以下是页面的内部结构。
window.overviewDayoverviewDay.getOverviewDayList()overviewDay.setOverviewDayParams()input.form-control.sse_input[name="undefined"][type="text"] — 查询日期如果直调 API 受阻,以下 action steps 可复现数据获取:
// Trigger data load overviewDay.getOverviewDayList() // 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 自动提交的调用记录与注意事项。