籌碼與資金
籌碼流向
提供法人與參與者拆分的籌碼流向資料,適合籌碼面分析與策略研究。
GET
/v2/datasets/chip-flowsOverview#
籌碼流向 API 提供法人與參與者拆分的買賣超流向資料,適合做籌碼面研究與策略訊號。
此頁為 productized endpoint,採 canonical envelope 回應。
- 追蹤外資/投信/自營商資金流向。
- 建立籌碼動能訊號。
- 與價格資料做事件對照。
Request#
可使用 ticker、participant_type、flow_type 與日期區間做條件查詢。
Query Parameters#
| 欄位 | 型別 | Required | 說明 |
|---|---|---|---|
| ticker | string | no | 股票代碼。 |
| market | string | no | 市場代碼,預設 tw。 |
| flow_type | string | no | 流向類型過濾。 |
| participant_type | string | no | 參與者類型過濾。 |
| date_from | string | no | 查詢起始日期(YYYY-MM-DD)。 |
| date_to | string | no | 查詢結束日期(YYYY-MM-DD)。 |
| limit | integer | no | 回傳筆數限制。 |
Response Shape#
回應為 canonical envelope 格式,頂層包含 query/meta 與 envelope.data。
{
"api_version": "v2",
"endpoint": "/v2/datasets/chip-flows",
"request_id": "req_chip_4422",
"plan_id": "pro",
"dataset": "chip_flows",
"query": {
"ticker": "2330",
"market": "tw",
"flow_type": null,
"participant_type": "foreign",
"date_from": "2026-04-01",
"date_to": "2026-04-22",
"limit": 50
},
"meta": {
"rows_returned": 1
},
"envelope": {
"api_version": "v2",
"dataset": "chip_flows",
"request_context": {
"ticker": "2330",
"as_of_date": "2026-04-22",
"family": "chip_deep",
"dataset_view": "broker_trading_daily_agg_v2"
},
"data": [
{
"ticker": "2330",
"trade_date": "2026-04-22",
"participant_type": "foreign",
"net_volume": 1250000,
"net_value": 1024000000,
"source_dataset": "broker_trading_daily"
}
]
}
}Field 說明#
| 欄位路徑 | 型別 | 說明 |
|---|---|---|
| dataset | string | 資料集識別,固定為 chip_flows。 |
| meta.rows_returned | integer | 回傳資料筆數。 |
| envelope.data[].ticker | string | 股票代碼。 |
| envelope.data[].trade_date | string | 交易日期。 |
| envelope.data[].participant_type | string|null | 參與者類型。 |
| envelope.data[].net_volume | number|null | 買賣超張數。 |
| envelope.data[].net_value | number|null | 買賣超金額。 |
| envelope.data[].source_dataset | string|null | 來源資料集標記。 |
Usage Notes / 使用建議#
- 此頁為 productized endpoint。
- 若需要融資融券補充面,請參考 `/v2/datasets/margin-short`。
- 若需要法人淨買超寬表,請參考 `/v2/datasets/institutional-flow`。
Plan Requirement#
- Free(限制)
- Developer
- Pro
- Enterprise