POST
/
stock
/
margin-requirement-ratios
融资融券标的证券日保证金比例
curl --request POST \
  --url https://data-api.investoday.net/data/stock/margin-requirement-ratios \
  --header 'Content-Type: application/json' \
  --header 'apiKey: <api-key>' \
  --data '
{
  "stockCode": "002594",
  "stockCodes": [
    "000001",
    "600519"
  ],
  "beginDate": "2020-01-01",
  "endDate": "2025-01-01",
  "pageNum": 1,
  "pageSize": 10
}
'
{
  "code": 0,
  "message": "success",
  "data": [
    {
      "stockCode": "000050",
      "stockName": "深天马A",
      "publishDate": "2010-03-29 00:00:00",
      "publisher": "海通证券",
      "conversionRatePct": 50,
      "changeDate": "2010-03-29 00:00:00",
      "nextChangeDate": "2020-01-01 00:00:00"
    }
  ]
}

Authorizations

apiKey
string
header
required

API访问的安全令牌

Body

application/json

通过股票代码、开始日期和结束日期查询融资融券可充抵保证金证券的折算率及相关信息,包括股票代码、名称、折算率、发布机构、变更日期和下次变更日期等,支持分页查询。

stockCode
string

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

Example:

"002594"

stockCodes
string[]

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

Example:
["000001", "600519"]
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

Response

成功响应

code
integer<int32>

响应状态码

Example:

0

message
string

响应消息

Example:

"success"

data
object[]