Retrieve capital flow data for stocks, including inflow and outflow of main funds, large orders, medium orders, and small orders.
| Parameter | Required | Description |
|---|---|---|
| symbol | Yes | Stock symbol code |
| Field Name | Description |
|---|---|
| symbol | Trading Symbol |
| timestamp | Data update timestamp |
| intraday_flow | Capital flow data |
| └─ timestamp | Minute start timestamp |
| └─ inflow | Net inflow |
| distribution | Capital distribution |
| └─ timestamp | Data update timestamp |
| └─ capital_in | Inflow capital |
| └─ large | Large orders |
| └─ medium | Medium orders |
| └─ small | Small orders |
| └─ capital_out | Outflow capital |
| └─ large | Large orders |
| └─ medium | Medium orders |
| └─ small | Small orders |
Stock symbol
"700.HK"
Successful response
0
"success"
{
"symbol": "700.HK",
"timestamp": 1773306211,
"intraday_flow": [
{
"timestamp": 1773279000,
"inflow": "-12199.34"
},
{
"timestamp": 1773279060,
"inflow": "-15137.59"
}
],
"distribution": {
"timestamp": 1773303000,
"capital_in": {
"large": "173056.31",
"medium": "164958.55",
"small": "83945.69"
},
"capital_out": {
"large": "179434.39",
"medium": "176045.91",
"small": "92979.74"
}
}
}