跳轉到主要內容
GET
/
v1
/
market
/
capital-flow
Capital Flow
curl --request GET \
  --url https://api.tickdb.ai/v1/market/capital-flow \
  --header 'X-API-Key: <api-key>'
{
  "code": 0,
  "message": "success",
  "data": {
    "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"
      }
    }
  }
}

注意事項

  • 資金流向數據基於成交量和價格變化計算
  • 數據更新頻率取決於市場交易活躍度

支持的市場

美股港股A股 示例:
  • 美股:AAPL.US、TSLA.US、MSFT.US
  • 港股:700.HK、9988.HK、3690.HK
  • A股:000001.SH、000001.SZ

請求參數

參數名是否必須描述
symbol股票代碼

授權

X-API-Key
string
header
必填

查詢參數

symbol
string
預設值:700.HK
必填

Stock symbol

範例:

"700.HK"

回應

200 - application/json

Successful response

code
integer
範例:

0

message
string
範例:

"success"

data
object
範例:
{
"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"
}
}
}