POST
/
stock
/
dt-details
龙虎榜上榜股票明细
curl --request POST \
  --url https://data-api.investoday.net/data/stock/dt-details \
  --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": "2019-03-14 00:00:00",
      "stockCode": "002356",
      "stockName": "赫美集团",
      "abnormalType": "日涨幅偏离值达7%的前三只证券",
      "deviationPct": 12.63,
      "volume": 2077,
      "amount": "314860000.0000"
    }
  ]
}

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[]