POST
/
stock
/
daily-fund-flows
股票日资金流向
curl --request POST \
  --url https://data-api.investoday.net/data/stock/daily-fund-flows \
  --header 'Content-Type: application/json' \
  --header 'apiKey: <api-key>' \
  --data '
{
  "stockCode": "002594",
  "beginDate": "2020-01-01",
  "endDate": "2025-01-01",
  "pageNum": 1,
  "pageSize": 10,
  "stockCodes": [
    "000001",
    "600519"
  ]
}
'
{
  "code": 0,
  "message": "success",
  "data": [
    {
      "date": "2023-10-26",
      "stockCode": "600519",
      "stockName": "贵州茅台",
      "inflowSmall": -12345678.9,
      "inflowMedium": -12345678.9,
      "inflowLarge": 12345678.9,
      "inflowXlarge": 12345678.9,
      "outflowSmall": -1234567.89,
      "outflowMedium": -125.73,
      "outflowLarge": -12345678.9,
      "outflowXlarge": -12345678.9,
      "netInflowSmall": "-12345678.90",
      "netInflowMedium": "12345.67",
      "netInflowLarge": "1200000",
      "netInflowXlarge": "12345.67",
      "netInflowRatioSmall": -0.0325,
      "netInflowRatioMedium": -0.0325,
      "netInflowRatioLarge": -0.0325,
      "netInflowRatioXlarge": -0.0325,
      "mainNetInflow": -12345.67,
      "mainNetInflowRatio": -0.0325,
      "askVolumeTotal": 56133.26,
      "bidVolumeTotal": 52335.55,
      "bidAskVolumeDiff": 3797.71,
      "controlRatio": 0.1755
    }
  ]
}

Authorizations

apiKey
string
header
required

API访问的安全令牌

Body

application/json

通过指定股票代码和日期范围(格式为yyyy-MM-dd),查询该股票在指定交易日内的资金流向数据,包括小单、中单、大单、超大单的资金流入、流出、净流入金额及占比,以及主力资金净流入金额和占比,用于分析不同资金规模的交易行为和主力动向。

stockCode
string

股票代码【与stockCodes组成多选一参数,必须且只能传递其中一个】

Example:

"002594"

beginDate
string

开始日期(格式yyyy-MM-dd)。 最小值:2020-01-01;

Example:

"2020-01-01"

endDate
string

结束日期(格式yyyy-MM-dd)

Example:

"2025-01-01"

pageNum
integer<int32>

页码。 最小值:1;

Example:

1

pageSize
integer<int32>

页长。 最小值:1; 最大值:500;

Example:

10

stockCodes
string[]

股票代码列表【与stockCode组成多选一参数,必须且只能传递其中一个】

Example:
["000001", "600519"]

Response

成功响应

code
integer<int32>

响应状态码

Example:

0

message
string

响应消息

Example:

"success"

data
object[]