@investoday/investoday-api 1.9.39 → 1.9.41

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/data/openapi.json CHANGED
@@ -57913,6 +57913,3081 @@
57913
57913
  "x-apikey-supported": [
57914
57914
  "resource"
57915
57915
  ]
57916
+ },
57917
+ "/convertibles/basic": {
57918
+ "post": {
57919
+ "tags": [
57920
+ "可转债基础信息"
57921
+ ],
57922
+ "summary": "可转债基础信息",
57923
+ "description": "支持通过单个可转债代码或多个可转债代码列表进行批量查询,还可通过页码、页大小实现分页查询,获取可转债的全面基本信息,包括可转债的代码、简称、全称、类型,对应正股的代码与名称,交易市场,首次信息披露、起息、到期、上市、摘牌等各类日期(格式为yyyy-MM-dd HH:mm:ss),担保方、评级机构及信用评级,发行期限、初始面值、发行规模等发行信息,计息与付息方式、票面利率等利息相关信息,转股代码、转股起止日期等转股规则,以及赎回保护期、到期赎回价等条款信息,可用于可转债的投资分析、品种研究等场景",
57924
+ "operationId": "list_cb_basic",
57925
+ "requestBody": {
57926
+ "description": "支持通过单个可转债代码或多个可转债代码列表进行批量查询,还可通过页码、页大小实现分页查询,获取可转债的全面基本信息,包括可转债的代码、简称、全称、类型,对应正股的代码与名称,交易市场,首次信息披露、起息、到期、上市、摘牌等各类日期(格式为yyyy-MM-dd HH:mm:ss),担保方、评级机构及信用评级,发行期限、初始面值、发行规模等发行信息,计息与付息方式、票面利率等利息相关信息,转股代码、转股起止日期等转股规则,以及赎回保护期、到期赎回价等条款信息,可用于可转债的投资分析、品种研究等场景",
57927
+ "content": {
57928
+ "application/json": {
57929
+ "schema": {
57930
+ "type": "object",
57931
+ "properties": {
57932
+ "cbCode": {
57933
+ "type": "string",
57934
+ "description": "可转债代码【与cbCodes组成多选一参数,必须且只能传递其中一个】",
57935
+ "example": "110059"
57936
+ },
57937
+ "cbCodes": {
57938
+ "type": "array",
57939
+ "description": "可转债代码列表【与cbCode组成多选一参数,必须且只能传递其中一个】",
57940
+ "example": [
57941
+ "110059",
57942
+ "113052"
57943
+ ],
57944
+ "items": {
57945
+ "type": "string"
57946
+ }
57947
+ },
57948
+ "pageNum": {
57949
+ "type": "integer",
57950
+ "format": "int32",
57951
+ "description": "页码。\n最小值:1;",
57952
+ "example": 1
57953
+ },
57954
+ "pageSize": {
57955
+ "type": "integer",
57956
+ "format": "int32",
57957
+ "description": "页长。\n最小值:1;\n最大值:500;",
57958
+ "example": 10
57959
+ }
57960
+ }
57961
+ }
57962
+ }
57963
+ },
57964
+ "required": true
57965
+ },
57966
+ "responses": {
57967
+ "200": {
57968
+ "description": "成功响应",
57969
+ "content": {
57970
+ "application/json": {
57971
+ "schema": {
57972
+ "type": "object",
57973
+ "properties": {
57974
+ "cbCode": {
57975
+ "type": "string",
57976
+ "description": "可转债代码",
57977
+ "example": "110059"
57978
+ },
57979
+ "cbName": {
57980
+ "type": "string",
57981
+ "description": "可转债简称",
57982
+ "example": "浦发转债"
57983
+ },
57984
+ "cbFullName": {
57985
+ "type": "string",
57986
+ "description": "可转债全称",
57987
+ "example": "上海浦东发展银行股份有限公司公开发行可转换公司债券"
57988
+ },
57989
+ "cbType": {
57990
+ "type": "integer",
57991
+ "format": "int32",
57992
+ "allOf": [
57993
+ {
57994
+ "type": "integer",
57995
+ "format": "int32",
57996
+ "description": "1代表常规可转债,2代表分离交易可转债,4代表可交换公司债券",
57997
+ "enum": [
57998
+ 1
57999
+ ]
58000
+ }
58001
+ ],
58002
+ "description": "可转债类型",
58003
+ "example": 1
58004
+ },
58005
+ "stockCode": {
58006
+ "type": "string",
58007
+ "description": "对应正股代码",
58008
+ "example": "600000"
58009
+ },
58010
+ "stockName": {
58011
+ "type": "string",
58012
+ "description": "对应正股简称",
58013
+ "example": "浦发银行"
58014
+ },
58015
+ "exchange": {
58016
+ "type": "string",
58017
+ "allOf": [
58018
+ {
58019
+ "type": "string",
58020
+ "description": "S代表上交所,Z代表深交所",
58021
+ "enum": [
58022
+ "S"
58023
+ ]
58024
+ }
58025
+ ],
58026
+ "description": "交易市场",
58027
+ "example": "S"
58028
+ },
58029
+ "firstPublishDate": {
58030
+ "type": "string",
58031
+ "description": "首次信息发布日期",
58032
+ "example": "2019-10-24 00:00:00"
58033
+ },
58034
+ "guarantor": {
58035
+ "type": "string",
58036
+ "description": "担保人,可为空",
58037
+ "example": "上海国资经营公司"
58038
+ },
58039
+ "ratingAgency": {
58040
+ "type": "string",
58041
+ "description": "评级机构名称,可为空",
58042
+ "example": "联合资信"
58043
+ },
58044
+ "rating": {
58045
+ "type": "string",
58046
+ "description": "债券信用级别,可为空",
58047
+ "example": "AAA"
58048
+ },
58049
+ "sponsor": {
58050
+ "type": "string",
58051
+ "description": "保荐人,可为空",
58052
+ "example": "中信证券"
58053
+ },
58054
+ "leadUnderwriter": {
58055
+ "type": "string",
58056
+ "description": "主承销商,可为空",
58057
+ "example": "中信证券"
58058
+ },
58059
+ "maturityYears": {
58060
+ "type": "number",
58061
+ "description": "债券期限,单位年",
58062
+ "example": 6
58063
+ },
58064
+ "valueDate": {
58065
+ "type": "string",
58066
+ "description": "起息日",
58067
+ "example": "2019-10-28 00:00:00"
58068
+ },
58069
+ "maturityDate": {
58070
+ "type": "string",
58071
+ "description": "到期日",
58072
+ "example": "2025-10-28 00:00:00"
58073
+ },
58074
+ "actualMaturityDate": {
58075
+ "type": "string",
58076
+ "description": "实际到期日,可为空",
58077
+ "example": "2025-10-28 00:00:00"
58078
+ },
58079
+ "parValue": {
58080
+ "type": "number",
58081
+ "description": "初始债券面值,单位元",
58082
+ "example": 100
58083
+ },
58084
+ "issueVolume": {
58085
+ "type": "number",
58086
+ "description": "发行张数,单位张",
58087
+ "example": 500000000
58088
+ },
58089
+ "issueSize": {
58090
+ "type": "number",
58091
+ "description": "实际发行规模,单位百万元",
58092
+ "example": 50000
58093
+ },
58094
+ "interestMethod": {
58095
+ "type": "integer",
58096
+ "format": "int32",
58097
+ "allOf": [
58098
+ {
58099
+ "type": "integer",
58100
+ "format": "int32",
58101
+ "description": "1代表单利固定利率,3代表浮动利率,4代表累进利率,5代表贴现,6代表无序利率",
58102
+ "enum": [
58103
+ 1
58104
+ ]
58105
+ }
58106
+ ],
58107
+ "description": "计息方式",
58108
+ "example": 1
58109
+ },
58110
+ "paymentMethod": {
58111
+ "type": "integer",
58112
+ "format": "int32",
58113
+ "allOf": [
58114
+ {
58115
+ "type": "integer",
58116
+ "format": "int32",
58117
+ "description": "1代表每年付息,2代表半年付息,3代表到期一次还本付息,4代表按季付息,5代表按月付息",
58118
+ "enum": [
58119
+ 1
58120
+ ]
58121
+ }
58122
+ ],
58123
+ "description": "付息方式",
58124
+ "example": 1
58125
+ },
58126
+ "paymentFrequency": {
58127
+ "type": "integer",
58128
+ "format": "int32",
58129
+ "description": "每年付息次数",
58130
+ "example": 1
58131
+ },
58132
+ "initialCouponRate": {
58133
+ "type": "number",
58134
+ "description": "初始票面年利率,单位%",
58135
+ "example": 0.2
58136
+ },
58137
+ "compensationRate": {
58138
+ "type": "number",
58139
+ "description": "到期补偿利率,单位%,可为空",
58140
+ "example": 2
58141
+ },
58142
+ "maturityInterest": {
58143
+ "type": "number",
58144
+ "description": "到期利息补偿,单位元/张,可为空",
58145
+ "example": 2
58146
+ },
58147
+ "issueStatus": {
58148
+ "type": "integer",
58149
+ "format": "int32",
58150
+ "allOf": [
58151
+ {
58152
+ "type": "integer",
58153
+ "format": "int32",
58154
+ "description": "10代表发行失败",
58155
+ "enum": [
58156
+ 10
58157
+ ]
58158
+ }
58159
+ ],
58160
+ "description": "发行状态,可为空",
58161
+ "example": 10
58162
+ },
58163
+ "listDate": {
58164
+ "type": "string",
58165
+ "description": "上市日期",
58166
+ "example": "2019-11-15 00:00:00"
58167
+ },
58168
+ "delistDate": {
58169
+ "type": "string",
58170
+ "description": "摘牌日期,可为空",
58171
+ "example": "2025-10-28 00:00:00"
58172
+ },
58173
+ "lastTradeDate": {
58174
+ "type": "string",
58175
+ "description": "最后交易日,可为空",
58176
+ "example": "2025-10-24 00:00:00"
58177
+ },
58178
+ "conversionCode": {
58179
+ "type": "string",
58180
+ "description": "转股申报代码",
58181
+ "example": "190059"
58182
+ },
58183
+ "conversionStartDate": {
58184
+ "type": "string",
58185
+ "description": "转股起始日",
58186
+ "example": "2020-05-04 00:00:00"
58187
+ },
58188
+ "conversionEndDate": {
58189
+ "type": "string",
58190
+ "description": "转股截止日",
58191
+ "example": "2025-10-27 00:00:00"
58192
+ },
58193
+ "conversionStopDate": {
58194
+ "type": "string",
58195
+ "description": "停止转股日,可为空",
58196
+ "example": "2025-10-20 00:00:00"
58197
+ },
58198
+ "callProtectionYears": {
58199
+ "type": "number",
58200
+ "description": "赎回保护期,单位年,可为空",
58201
+ "example": 0.5
58202
+ },
58203
+ "maturityCallPrice": {
58204
+ "type": "number",
58205
+ "description": "到期赎回价,单位元/张,可为空",
58206
+ "example": 110
58207
+ },
58208
+ "pageNum": {
58209
+ "type": "integer",
58210
+ "format": "int32",
58211
+ "description": "page number",
58212
+ "example": 1
58213
+ },
58214
+ "pageSize": {
58215
+ "type": "integer",
58216
+ "format": "int32",
58217
+ "description": "page size",
58218
+ "example": 100
58219
+ },
58220
+ "totalCount": {
58221
+ "type": "integer",
58222
+ "format": "int32",
58223
+ "description": "total count",
58224
+ "example": 0
58225
+ }
58226
+ }
58227
+ }
58228
+ }
58229
+ }
58230
+ },
58231
+ "400": {
58232
+ "description": "无效请求"
58233
+ },
58234
+ "500": {
58235
+ "description": "服务器内部错误"
58236
+ }
58237
+ },
58238
+ "security": [
58239
+ {
58240
+ "ApiKeyAuth": []
58241
+ }
58242
+ ]
58243
+ },
58244
+ "x-apikey-supported": [
58245
+ "resource"
58246
+ ]
58247
+ },
58248
+ "/bonds/basic": {
58249
+ "post": {
58250
+ "tags": [
58251
+ "债券基础信息"
58252
+ ],
58253
+ "summary": "债券基础信息",
58254
+ "description": "支持通过单个债券代码或批量债券代码列表查询,还可配合页码、页大小进行分页,获取债券的基础信息,包括债券代码、简称、全称、货币种类、交易场所、上市日期(格式为yyyy-MM-dd HH:mm:ss)、上市状态、摘牌日期(格式为yyyy-MM-dd HH:mm:ss)、债券类型(大类及细分的代码与名称)、债券形式、ISIN代码、期限、发行人、发行人类型、统一债券ID、担保人等核心数据,可用于债券基础信息核对、债券研究分析等场景。",
58255
+ "operationId": "list_bonds_basic",
58256
+ "requestBody": {
58257
+ "description": "支持通过单个债券代码或批量债券代码列表查询,还可配合页码、页大小进行分页,获取债券的基础信息,包括债券代码、简称、全称、货币种类、交易场所、上市日期(格式为yyyy-MM-dd HH:mm:ss)、上市状态、摘牌日期(格式为yyyy-MM-dd HH:mm:ss)、债券类型(大类及细分的代码与名称)、债券形式、ISIN代码、期限、发行人、发行人类型、统一债券ID、担保人等核心数据,可用于债券基础信息核对、债券研究分析等场景。",
58258
+ "content": {
58259
+ "application/json": {
58260
+ "schema": {
58261
+ "type": "object",
58262
+ "properties": {
58263
+ "bondCode": {
58264
+ "type": "string",
58265
+ "description": "债券代码【与bondCodes组成多选一参数,必须且只能传递其中一个】",
58266
+ "example": "110059"
58267
+ },
58268
+ "bondCodes": {
58269
+ "type": "array",
58270
+ "description": "债券代码列表【与bondCode组成多选一参数,必须且只能传递其中一个】",
58271
+ "example": [
58272
+ "110059",
58273
+ "113052"
58274
+ ],
58275
+ "items": {
58276
+ "type": "string"
58277
+ }
58278
+ },
58279
+ "pageNum": {
58280
+ "type": "integer",
58281
+ "format": "int32",
58282
+ "description": "页码。\n最小值:1;",
58283
+ "example": 1
58284
+ },
58285
+ "pageSize": {
58286
+ "type": "integer",
58287
+ "format": "int32",
58288
+ "description": "页长。\n最小值:1;\n最大值:500;",
58289
+ "example": 10
58290
+ }
58291
+ }
58292
+ }
58293
+ }
58294
+ },
58295
+ "required": true
58296
+ },
58297
+ "responses": {
58298
+ "200": {
58299
+ "description": "成功响应",
58300
+ "content": {
58301
+ "application/json": {
58302
+ "schema": {
58303
+ "type": "object",
58304
+ "properties": {
58305
+ "bondCode": {
58306
+ "type": "string",
58307
+ "description": "债券代码",
58308
+ "example": "110059"
58309
+ },
58310
+ "bondName": {
58311
+ "type": "string",
58312
+ "description": "债券简称",
58313
+ "example": "浦发转债"
58314
+ },
58315
+ "bondFullName": {
58316
+ "type": "string",
58317
+ "description": "债券全称",
58318
+ "example": "上海浦东发展银行股份有限公司公开发行可转换公司债券"
58319
+ },
58320
+ "currency": {
58321
+ "type": "string",
58322
+ "description": "货币种类",
58323
+ "example": "CNY"
58324
+ },
58325
+ "exchange": {
58326
+ "type": "string",
58327
+ "allOf": [
58328
+ {
58329
+ "type": "string",
58330
+ "description": "S代表上交所,Y代表银行间市场,Z代表深交所",
58331
+ "enum": [
58332
+ "S"
58333
+ ]
58334
+ }
58335
+ ],
58336
+ "description": "交易市场",
58337
+ "example": "S"
58338
+ },
58339
+ "listDate": {
58340
+ "type": "string",
58341
+ "description": "上市日期",
58342
+ "example": "2019-11-15 00:00:00"
58343
+ },
58344
+ "listStatus": {
58345
+ "type": "integer",
58346
+ "format": "int32",
58347
+ "allOf": [
58348
+ {
58349
+ "type": "integer",
58350
+ "format": "int32",
58351
+ "description": "0代表发行待流通,1代表首次流通,2代表转换后流通,3代表暂停后恢复流通,4代表暂停流通,5代表终止流通,6代表特别处理,7代表撤销特别处理,8代表退市整理期,9代表其他",
58352
+ "enum": [
58353
+ 0
58354
+ ]
58355
+ }
58356
+ ],
58357
+ "description": "上市状态",
58358
+ "example": 1
58359
+ },
58360
+ "delistDate": {
58361
+ "type": "string",
58362
+ "description": "摘牌日期,可为空",
58363
+ "example": "2025-10-28 00:00:00"
58364
+ },
58365
+ "bondType": {
58366
+ "type": "integer",
58367
+ "format": "int32",
58368
+ "description": "债券类型大类代码",
58369
+ "example": 1
58370
+ },
58371
+ "bondSubtype": {
58372
+ "type": "integer",
58373
+ "format": "int32",
58374
+ "description": "债券类型细类代码",
58375
+ "example": 10
58376
+ },
58377
+ "bondForm": {
58378
+ "type": "integer",
58379
+ "format": "int32",
58380
+ "allOf": [
58381
+ {
58382
+ "type": "integer",
58383
+ "format": "int32",
58384
+ "description": "10代表可转换债券,13代表公司债券,16代表地方政府债券,29代表可交换公司债券",
58385
+ "enum": [
58386
+ 10
58387
+ ]
58388
+ }
58389
+ ],
58390
+ "description": "债券形态",
58391
+ "example": 10
58392
+ },
58393
+ "isin": {
58394
+ "type": "string",
58395
+ "description": "ISIN编码",
58396
+ "example": "CNE100003PN7"
58397
+ },
58398
+ "maturityYears": {
58399
+ "type": "integer",
58400
+ "format": "int32",
58401
+ "description": "债券期限,单位年",
58402
+ "example": 6
58403
+ },
58404
+ "issuer": {
58405
+ "type": "string",
58406
+ "description": "发行人",
58407
+ "example": "浦发银行"
58408
+ },
58409
+ "issuerType": {
58410
+ "type": "integer",
58411
+ "format": "int32",
58412
+ "description": "发行人性质代码",
58413
+ "example": 1
58414
+ },
58415
+ "unifiedBondId": {
58416
+ "type": "string",
58417
+ "description": "同一债券跨市场统一编码",
58418
+ "example": "UNIBOND000001"
58419
+ },
58420
+ "bondTypeName": {
58421
+ "type": "string",
58422
+ "description": "债券类型大类说明",
58423
+ "example": "公司债"
58424
+ },
58425
+ "bondSubtypeName": {
58426
+ "type": "string",
58427
+ "description": "债券类型细类说明",
58428
+ "example": "可转换公司债"
58429
+ },
58430
+ "guarantor": {
58431
+ "type": "string",
58432
+ "description": "担保人,可为空",
58433
+ "example": "上海国资经营公司"
58434
+ },
58435
+ "pageNum": {
58436
+ "type": "integer",
58437
+ "format": "int32",
58438
+ "description": "page number",
58439
+ "example": 1
58440
+ },
58441
+ "pageSize": {
58442
+ "type": "integer",
58443
+ "format": "int32",
58444
+ "description": "page size",
58445
+ "example": 100
58446
+ },
58447
+ "totalCount": {
58448
+ "type": "integer",
58449
+ "format": "int32",
58450
+ "description": "total count",
58451
+ "example": 0
58452
+ }
58453
+ }
58454
+ }
58455
+ }
58456
+ }
58457
+ },
58458
+ "400": {
58459
+ "description": "无效请求"
58460
+ },
58461
+ "500": {
58462
+ "description": "服务器内部错误"
58463
+ }
58464
+ },
58465
+ "security": [
58466
+ {
58467
+ "ApiKeyAuth": []
58468
+ }
58469
+ ]
58470
+ },
58471
+ "x-apikey-supported": [
58472
+ "resource"
58473
+ ]
58474
+ },
58475
+ "/bonds/coupons": {
58476
+ "post": {
58477
+ "tags": [
58478
+ "债券票面利率历史"
58479
+ ],
58480
+ "summary": "债券票面利率历史",
58481
+ "description": "支持通过单个债券代码或批量债券代码列表,结合统计区间开始日期(格式yyyy-MM-dd)、统计区间结束日期(格式yyyy-MM-dd),并可通过页码、页大小分页,查询债券票面利率历史数据,包含债券代码、简称、计息方式(代码及说明)、付息方式(代码及说明)、每年付息次数、起息日、本期计息开始日、本期计息截止日、本期债券年利率、基准利率、基准名称、基准日期、计息额外利差、有效利率、本期利率等核心数据,可用于债券收益分析、付息情况追踪等投研场景。",
58482
+ "operationId": "list_bonds_coupons",
58483
+ "requestBody": {
58484
+ "description": "支持通过单个债券代码或批量债券代码列表,结合统计区间开始日期(格式yyyy-MM-dd)、统计区间结束日期(格式yyyy-MM-dd),并可通过页码、页大小分页,查询债券票面利率历史数据,包含债券代码、简称、计息方式(代码及说明)、付息方式(代码及说明)、每年付息次数、起息日、本期计息开始日、本期计息截止日、本期债券年利率、基准利率、基准名称、基准日期、计息额外利差、有效利率、本期利率等核心数据,可用于债券收益分析、付息情况追踪等投研场景。",
58485
+ "content": {
58486
+ "application/json": {
58487
+ "schema": {
58488
+ "type": "object",
58489
+ "properties": {
58490
+ "bondCode": {
58491
+ "type": "string",
58492
+ "description": "债券代码【与bondCodes组成多选一参数,必须且只能传递其中一个】",
58493
+ "example": "110059"
58494
+ },
58495
+ "bondCodes": {
58496
+ "type": "array",
58497
+ "description": "债券代码列表【与bondCode组成多选一参数,必须且只能传递其中一个】",
58498
+ "example": [
58499
+ "110059",
58500
+ "113052"
58501
+ ],
58502
+ "items": {
58503
+ "type": "string"
58504
+ }
58505
+ },
58506
+ "beginDate": {
58507
+ "type": "string",
58508
+ "description": "计息区间开始日期(格式yyyy-MM-dd)",
58509
+ "example": "2020-01-01"
58510
+ },
58511
+ "endDate": {
58512
+ "type": "string",
58513
+ "description": "计息区间结束日期(格式yyyy-MM-dd)",
58514
+ "example": "2026-08-12"
58515
+ },
58516
+ "pageNum": {
58517
+ "type": "integer",
58518
+ "format": "int32",
58519
+ "description": "页码。\n最小值:1;",
58520
+ "example": 1
58521
+ },
58522
+ "pageSize": {
58523
+ "type": "integer",
58524
+ "format": "int32",
58525
+ "description": "页长。\n最小值:1;\n最大值:500;",
58526
+ "example": 10
58527
+ }
58528
+ }
58529
+ }
58530
+ }
58531
+ },
58532
+ "required": true
58533
+ },
58534
+ "responses": {
58535
+ "200": {
58536
+ "description": "成功响应",
58537
+ "content": {
58538
+ "application/json": {
58539
+ "schema": {
58540
+ "type": "object",
58541
+ "properties": {
58542
+ "bondCode": {
58543
+ "type": "string",
58544
+ "description": "债券代码",
58545
+ "example": "110059"
58546
+ },
58547
+ "bondName": {
58548
+ "type": "string",
58549
+ "description": "债券简称",
58550
+ "example": "浦发转债"
58551
+ },
58552
+ "interestMethod": {
58553
+ "type": "integer",
58554
+ "format": "int32",
58555
+ "description": "计息方式代码",
58556
+ "example": 1
58557
+ },
58558
+ "interestMethodName": {
58559
+ "type": "string",
58560
+ "description": "计息方式说明",
58561
+ "example": "固定利率"
58562
+ },
58563
+ "paymentMethod": {
58564
+ "type": "integer",
58565
+ "format": "int32",
58566
+ "description": "付息方式代码",
58567
+ "example": 1
58568
+ },
58569
+ "paymentMethodName": {
58570
+ "type": "string",
58571
+ "description": "付息方式说明",
58572
+ "example": "每年付息"
58573
+ },
58574
+ "paymentFrequency": {
58575
+ "type": "integer",
58576
+ "format": "int32",
58577
+ "description": "每年付息次数",
58578
+ "example": 1
58579
+ },
58580
+ "valueDate": {
58581
+ "type": "string",
58582
+ "description": "起息日",
58583
+ "example": "2019-10-28 00:00:00"
58584
+ },
58585
+ "periodStartDate": {
58586
+ "type": "string",
58587
+ "description": "本期计息起始日",
58588
+ "example": "2024-10-28 00:00:00"
58589
+ },
58590
+ "periodEndDate": {
58591
+ "type": "string",
58592
+ "description": "本期计息截止日",
58593
+ "example": "2025-10-27 00:00:00"
58594
+ },
58595
+ "couponRate": {
58596
+ "type": "number",
58597
+ "description": "本期债券年利率,单位%",
58598
+ "example": 2
58599
+ },
58600
+ "benchmarkRate": {
58601
+ "type": "number",
58602
+ "description": "浮动利率计息基准利率,单位%,可为空",
58603
+ "example": 2.5
58604
+ },
58605
+ "benchmarkName": {
58606
+ "type": "string",
58607
+ "description": "浮动利率计息基准说明,可为空",
58608
+ "example": "一年期定期存款利率"
58609
+ },
58610
+ "benchmarkDate": {
58611
+ "type": "string",
58612
+ "description": "浮动利率计息基准日,可为空",
58613
+ "example": "2024-10-28 00:00:00"
58614
+ },
58615
+ "spread": {
58616
+ "type": "number",
58617
+ "description": "计息额外利差,单位%,可为空",
58618
+ "example": 0.5
58619
+ },
58620
+ "effectiveRate": {
58621
+ "type": "number",
58622
+ "description": "有效利率,单位%,可为空",
58623
+ "example": 3
58624
+ },
58625
+ "segmentRate": {
58626
+ "type": "number",
58627
+ "description": "本段利率,单位%,可为空",
58628
+ "example": 3
58629
+ },
58630
+ "pageNum": {
58631
+ "type": "integer",
58632
+ "format": "int32",
58633
+ "description": "page number",
58634
+ "example": 1
58635
+ },
58636
+ "pageSize": {
58637
+ "type": "integer",
58638
+ "format": "int32",
58639
+ "description": "page size",
58640
+ "example": 100
58641
+ },
58642
+ "totalCount": {
58643
+ "type": "integer",
58644
+ "format": "int32",
58645
+ "description": "total count",
58646
+ "example": 0
58647
+ }
58648
+ }
58649
+ }
58650
+ }
58651
+ }
58652
+ },
58653
+ "400": {
58654
+ "description": "无效请求"
58655
+ },
58656
+ "500": {
58657
+ "description": "服务器内部错误"
58658
+ }
58659
+ },
58660
+ "security": [
58661
+ {
58662
+ "ApiKeyAuth": []
58663
+ }
58664
+ ]
58665
+ },
58666
+ "x-apikey-supported": [
58667
+ "resource"
58668
+ ]
58669
+ },
58670
+ "/bonds/ratings": {
58671
+ "post": {
58672
+ "tags": [
58673
+ "债券信用评级历史"
58674
+ ],
58675
+ "summary": "债券信用评级历史",
58676
+ "description": "支持通过单个债券代码或批量债券代码列表,结合评级日期范围(格式yyyy-MM-dd),查询债券的信用评级历史记录,返回债券代码、债券名称、评级发布日期、评级信息来源、评级方式、评级日期、评级机构代码及名称、评级类型、评级结果、评级体系、评级展望、评级状态、评级变动原因等核心数据,同时支持分页查询,可用于债券信用风险分析、评级变动跟踪等投研任务。",
58677
+ "operationId": "list_bonds_ratings",
58678
+ "requestBody": {
58679
+ "description": "支持通过单个债券代码或批量债券代码列表,结合评级日期范围(格式yyyy-MM-dd),查询债券的信用评级历史记录,返回债券代码、债券名称、评级发布日期、评级信息来源、评级方式、评级日期、评级机构代码及名称、评级类型、评级结果、评级体系、评级展望、评级状态、评级变动原因等核心数据,同时支持分页查询,可用于债券信用风险分析、评级变动跟踪等投研任务。",
58680
+ "content": {
58681
+ "application/json": {
58682
+ "schema": {
58683
+ "type": "object",
58684
+ "properties": {
58685
+ "bondCode": {
58686
+ "type": "string",
58687
+ "description": "债券代码【与bondCodes组成多选一参数,必须且只能传递其中一个】",
58688
+ "example": "110059"
58689
+ },
58690
+ "bondCodes": {
58691
+ "type": "array",
58692
+ "description": "债券代码列表【与bondCode组成多选一参数,必须且只能传递其中一个】",
58693
+ "example": [
58694
+ "110059",
58695
+ "113052"
58696
+ ],
58697
+ "items": {
58698
+ "type": "string"
58699
+ }
58700
+ },
58701
+ "beginDate": {
58702
+ "type": "string",
58703
+ "description": "评级开始日期(格式yyyy-MM-dd)",
58704
+ "example": "2020-01-01"
58705
+ },
58706
+ "endDate": {
58707
+ "type": "string",
58708
+ "description": "评级结束日期(格式yyyy-MM-dd)",
58709
+ "example": "2026-08-12"
58710
+ },
58711
+ "pageNum": {
58712
+ "type": "integer",
58713
+ "format": "int32",
58714
+ "description": "页码。\n最小值:1;",
58715
+ "example": 1
58716
+ },
58717
+ "pageSize": {
58718
+ "type": "integer",
58719
+ "format": "int32",
58720
+ "description": "页长。\n最小值:1;\n最大值:500;",
58721
+ "example": 10
58722
+ }
58723
+ }
58724
+ }
58725
+ }
58726
+ },
58727
+ "required": true
58728
+ },
58729
+ "responses": {
58730
+ "200": {
58731
+ "description": "成功响应",
58732
+ "content": {
58733
+ "application/json": {
58734
+ "schema": {
58735
+ "type": "object",
58736
+ "properties": {
58737
+ "bondCode": {
58738
+ "type": "string",
58739
+ "description": "债券代码",
58740
+ "example": "110059"
58741
+ },
58742
+ "bondName": {
58743
+ "type": "string",
58744
+ "description": "债券简称",
58745
+ "example": "浦发转债"
58746
+ },
58747
+ "publishDate": {
58748
+ "type": "string",
58749
+ "description": "信息发布日期",
58750
+ "example": "2025-06-20 00:00:00"
58751
+ },
58752
+ "reportSource": {
58753
+ "type": "string",
58754
+ "description": "评级信息来源",
58755
+ "example": "评级报告"
58756
+ },
58757
+ "ratingMethod": {
58758
+ "type": "integer",
58759
+ "format": "int32",
58760
+ "allOf": [
58761
+ {
58762
+ "type": "integer",
58763
+ "format": "int32",
58764
+ "description": "1代表首次评级,2代表跟踪评级",
58765
+ "enum": [
58766
+ 1
58767
+ ]
58768
+ }
58769
+ ],
58770
+ "description": "债券评级方式",
58771
+ "example": 2
58772
+ },
58773
+ "ratingDate": {
58774
+ "type": "string",
58775
+ "description": "评级日期",
58776
+ "example": "2025-06-19 00:00:00"
58777
+ },
58778
+ "agencyCode": {
58779
+ "type": "integer",
58780
+ "format": "int32",
58781
+ "description": "评级机构代码",
58782
+ "example": 1001
58783
+ },
58784
+ "agencyName": {
58785
+ "type": "string",
58786
+ "description": "评级机构名称",
58787
+ "example": "中诚信国际信用评级有限责任公司"
58788
+ },
58789
+ "ratingType": {
58790
+ "type": "integer",
58791
+ "format": "int32",
58792
+ "allOf": [
58793
+ {
58794
+ "type": "integer",
58795
+ "format": "int32",
58796
+ "description": "1代表证券短期,2代表证券长期",
58797
+ "enum": [
58798
+ 1
58799
+ ]
58800
+ }
58801
+ ],
58802
+ "description": "评级类别",
58803
+ "example": 2
58804
+ },
58805
+ "rating": {
58806
+ "type": "string",
58807
+ "description": "信用级别描述",
58808
+ "example": "AAA"
58809
+ },
58810
+ "ratingSystem": {
58811
+ "type": "integer",
58812
+ "format": "int32",
58813
+ "allOf": [
58814
+ {
58815
+ "type": "integer",
58816
+ "format": "int32",
58817
+ "description": "1代表国内,2代表国际",
58818
+ "enum": [
58819
+ 1
58820
+ ]
58821
+ }
58822
+ ],
58823
+ "description": "评级体系",
58824
+ "example": 1
58825
+ },
58826
+ "ratingOutlook": {
58827
+ "type": "string",
58828
+ "description": "评级展望",
58829
+ "example": "稳定"
58830
+ },
58831
+ "ratingStatus": {
58832
+ "type": "integer",
58833
+ "format": "int32",
58834
+ "allOf": [
58835
+ {
58836
+ "type": "integer",
58837
+ "format": "int32",
58838
+ "description": "1代表正常,3代表暂时失效",
58839
+ "enum": [
58840
+ 1
58841
+ ]
58842
+ }
58843
+ ],
58844
+ "description": "评级状态",
58845
+ "example": 1
58846
+ },
58847
+ "changeReason": {
58848
+ "type": "string",
58849
+ "description": "评级状态变更说明,可为空",
58850
+ "example": "跟踪评级维持"
58851
+ },
58852
+ "pageNum": {
58853
+ "type": "integer",
58854
+ "format": "int32",
58855
+ "description": "page number",
58856
+ "example": 1
58857
+ },
58858
+ "pageSize": {
58859
+ "type": "integer",
58860
+ "format": "int32",
58861
+ "description": "page size",
58862
+ "example": 100
58863
+ },
58864
+ "totalCount": {
58865
+ "type": "integer",
58866
+ "format": "int32",
58867
+ "description": "total count",
58868
+ "example": 0
58869
+ }
58870
+ }
58871
+ }
58872
+ }
58873
+ }
58874
+ },
58875
+ "400": {
58876
+ "description": "无效请求"
58877
+ },
58878
+ "500": {
58879
+ "description": "服务器内部错误"
58880
+ }
58881
+ },
58882
+ "security": [
58883
+ {
58884
+ "ApiKeyAuth": []
58885
+ }
58886
+ ]
58887
+ },
58888
+ "x-apikey-supported": [
58889
+ "resource"
58890
+ ]
58891
+ },
58892
+ "/bonds/yield-curve": {
58893
+ "post": {
58894
+ "tags": [
58895
+ "债券收益率曲线"
58896
+ ],
58897
+ "summary": "债券收益率曲线",
58898
+ "description": "通过指定收益率曲线代码(必填,支持中债CNYYC、美债USDYC),可结合开始日期、结束日期筛选指定时间范围的债券收益率曲线数据,返回交易日期、曲线代码及名称,以及1个月至50年期的各期限债券收益率,美债曲线还包含5年至30年期通胀保值债券收益率,支持分页查询,可用于债券市场分析、收益率曲线研究等场景。",
58899
+ "operationId": "list_bonds_yield_curve",
58900
+ "requestBody": {
58901
+ "description": "通过指定收益率曲线代码(必填,支持中债CNYYC、美债USDYC),可结合开始日期、结束日期筛选指定时间范围的债券收益率曲线数据,返回交易日期、曲线代码及名称,以及1个月至50年期的各期限债券收益率,美债曲线还包含5年至30年期通胀保值债券收益率,支持分页查询,可用于债券市场分析、收益率曲线研究等场景。",
58902
+ "content": {
58903
+ "application/json": {
58904
+ "schema": {
58905
+ "type": "object",
58906
+ "properties": {
58907
+ "curveCode": {
58908
+ "type": "string",
58909
+ "allOf": [
58910
+ {
58911
+ "type": "string",
58912
+ "description": "CNYYC代表中债,USDYC代表美债",
58913
+ "enum": [
58914
+ "CNYYC"
58915
+ ]
58916
+ }
58917
+ ],
58918
+ "description": "收益率曲线代码",
58919
+ "example": "CNYYC"
58920
+ },
58921
+ "beginDate": {
58922
+ "type": "string",
58923
+ "description": "开始日期(格式yyyy-MM-dd)",
58924
+ "example": "2026-01-01"
58925
+ },
58926
+ "endDate": {
58927
+ "type": "string",
58928
+ "description": "结束日期(格式yyyy-MM-dd)",
58929
+ "example": "2026-08-12"
58930
+ },
58931
+ "pageNum": {
58932
+ "type": "integer",
58933
+ "format": "int32",
58934
+ "description": "页码。\n最小值:1;",
58935
+ "example": 1
58936
+ },
58937
+ "pageSize": {
58938
+ "type": "integer",
58939
+ "format": "int32",
58940
+ "description": "页长。\n最小值:1;\n最大值:500;",
58941
+ "example": 10
58942
+ }
58943
+ },
58944
+ "required": [
58945
+ "curveCode"
58946
+ ]
58947
+ }
58948
+ }
58949
+ },
58950
+ "required": true
58951
+ },
58952
+ "responses": {
58953
+ "200": {
58954
+ "description": "成功响应",
58955
+ "content": {
58956
+ "application/json": {
58957
+ "schema": {
58958
+ "type": "object",
58959
+ "properties": {
58960
+ "tradeDate": {
58961
+ "type": "string",
58962
+ "description": "交易日期",
58963
+ "example": "2026-08-11 00:00:00"
58964
+ },
58965
+ "curveCode": {
58966
+ "type": "string",
58967
+ "allOf": [
58968
+ {
58969
+ "type": "string",
58970
+ "description": "CNYYC代表中债,USDYC代表美债",
58971
+ "enum": [
58972
+ "CNYYC"
58973
+ ]
58974
+ }
58975
+ ],
58976
+ "description": "收益率曲线代码",
58977
+ "example": "CNYYC"
58978
+ },
58979
+ "curveName": {
58980
+ "type": "string",
58981
+ "description": "收益率曲线名称",
58982
+ "example": "中债收益率曲线"
58983
+ },
58984
+ "yield1m": {
58985
+ "type": "number",
58986
+ "description": "一月期债券收益率,单位%",
58987
+ "example": 1.852
58988
+ },
58989
+ "yield2m": {
58990
+ "type": "number",
58991
+ "description": "两月期债券收益率,单位%",
58992
+ "example": 1.864
58993
+ },
58994
+ "yield3m": {
58995
+ "type": "number",
58996
+ "description": "三月期债券收益率,单位%",
58997
+ "example": 1.875
58998
+ },
58999
+ "yield4m": {
59000
+ "type": "number",
59001
+ "description": "四月期债券收益率,单位%",
59002
+ "example": 1.886
59003
+ },
59004
+ "yield6m": {
59005
+ "type": "number",
59006
+ "description": "六月期债券收益率,单位%",
59007
+ "example": 1.902
59008
+ },
59009
+ "yield9m": {
59010
+ "type": "number",
59011
+ "description": "九月期债券收益率,单位%",
59012
+ "example": 1.925
59013
+ },
59014
+ "yield0y": {
59015
+ "type": "number",
59016
+ "description": "当年期债券收益率,单位%",
59017
+ "example": 1.93
59018
+ },
59019
+ "yield1y": {
59020
+ "type": "number",
59021
+ "description": "一年期债券收益率,单位%",
59022
+ "example": 1.945
59023
+ },
59024
+ "yield2y": {
59025
+ "type": "number",
59026
+ "description": "两年期债券收益率,单位%",
59027
+ "example": 1.998
59028
+ },
59029
+ "yield3y": {
59030
+ "type": "number",
59031
+ "description": "三年期债券收益率,单位%",
59032
+ "example": 2.035
59033
+ },
59034
+ "yield5y": {
59035
+ "type": "number",
59036
+ "description": "五年期债券收益率,单位%",
59037
+ "example": 2.102
59038
+ },
59039
+ "yield7y": {
59040
+ "type": "number",
59041
+ "description": "七年期债券收益率,单位%",
59042
+ "example": 2.135
59043
+ },
59044
+ "yield10y": {
59045
+ "type": "number",
59046
+ "description": "十年期债券收益率,单位%",
59047
+ "example": 2.156
59048
+ },
59049
+ "yield15y": {
59050
+ "type": "number",
59051
+ "description": "十五年期债券收益率,单位%",
59052
+ "example": 2.245
59053
+ },
59054
+ "yield20y": {
59055
+ "type": "number",
59056
+ "description": "二十年期债券收益率,单位%",
59057
+ "example": 2.302
59058
+ },
59059
+ "yield30y": {
59060
+ "type": "number",
59061
+ "description": "三十年期债券收益率,单位%",
59062
+ "example": 2.355
59063
+ },
59064
+ "yield40y": {
59065
+ "type": "number",
59066
+ "description": "四十年期债券收益率,单位%",
59067
+ "example": 2.386
59068
+ },
59069
+ "yield50y": {
59070
+ "type": "number",
59071
+ "description": "五十年期债券收益率,单位%",
59072
+ "example": 2.402
59073
+ },
59074
+ "tipsYield5y": {
59075
+ "type": "number",
59076
+ "description": "五年期通胀保值债券收益率,单位%,主要适用于美债曲线",
59077
+ "example": 1.625
59078
+ },
59079
+ "tipsYield7y": {
59080
+ "type": "number",
59081
+ "description": "七年期通胀保值债券收益率,单位%,主要适用于美债曲线",
59082
+ "example": 1.685
59083
+ },
59084
+ "tipsYield10y": {
59085
+ "type": "number",
59086
+ "description": "十年期通胀保值债券收益率,单位%,主要适用于美债曲线",
59087
+ "example": 1.742
59088
+ },
59089
+ "tipsYield20y": {
59090
+ "type": "number",
59091
+ "description": "二十年期通胀保值债券收益率,单位%,主要适用于美债曲线",
59092
+ "example": 1.855
59093
+ },
59094
+ "tipsYield30y": {
59095
+ "type": "number",
59096
+ "description": "三十年期通胀保值债券收益率,单位%,主要适用于美债曲线",
59097
+ "example": 1.902
59098
+ },
59099
+ "pageNum": {
59100
+ "type": "integer",
59101
+ "format": "int32",
59102
+ "description": "page number",
59103
+ "example": 1
59104
+ },
59105
+ "pageSize": {
59106
+ "type": "integer",
59107
+ "format": "int32",
59108
+ "description": "page size",
59109
+ "example": 100
59110
+ },
59111
+ "totalCount": {
59112
+ "type": "integer",
59113
+ "format": "int32",
59114
+ "description": "total count",
59115
+ "example": 0
59116
+ }
59117
+ }
59118
+ }
59119
+ }
59120
+ }
59121
+ },
59122
+ "400": {
59123
+ "description": "无效请求"
59124
+ },
59125
+ "500": {
59126
+ "description": "服务器内部错误"
59127
+ }
59128
+ },
59129
+ "security": [
59130
+ {
59131
+ "ApiKeyAuth": []
59132
+ }
59133
+ ]
59134
+ },
59135
+ "x-apikey-supported": [
59136
+ "resource"
59137
+ ]
59138
+ },
59139
+ "/cb/plans": {
59140
+ "post": {
59141
+ "tags": [
59142
+ "可转债发行预案"
59143
+ ],
59144
+ "summary": "可转债发行预案",
59145
+ "description": "支持通过可转债代码、正股代码、首次信息发布日期范围(格式yyyy-MM-dd),并可配合页码、页大小分页查询可转债的发行计划信息,包括可转债及对应正股的代码与名称、发行人、可转债类型、发行进度(流程代码及名称)、各关键时间节点(公告日、有效期、股东大会日、审核及批准日等)、计划发行规模上下限、计划变更情况及是否实施等核心数据,可用于可转债发行进度跟踪、投资标的分析等场景。",
59146
+ "operationId": "list_cb_plans",
59147
+ "requestBody": {
59148
+ "description": "支持通过可转债代码、正股代码、首次信息发布日期范围(格式yyyy-MM-dd),并可配合页码、页大小分页查询可转债的发行计划信息,包括可转债及对应正股的代码与名称、发行人、可转债类型、发行进度(流程代码及名称)、各关键时间节点(公告日、有效期、股东大会日、审核及批准日等)、计划发行规模上下限、计划变更情况及是否实施等核心数据,可用于可转债发行进度跟踪、投资标的分析等场景。",
59149
+ "content": {
59150
+ "application/json": {
59151
+ "schema": {
59152
+ "type": "object",
59153
+ "properties": {
59154
+ "cbCode": {
59155
+ "type": "string",
59156
+ "description": "可转债代码,预案阶段可能尚未生成【与stockCode组成多选一参数,必须且只能传递其中一个】",
59157
+ "example": "110059"
59158
+ },
59159
+ "stockCode": {
59160
+ "type": "string",
59161
+ "description": "正股代码【与cbCode组成多选一参数,必须且只能传递其中一个】",
59162
+ "example": "600000"
59163
+ },
59164
+ "beginDate": {
59165
+ "type": "string",
59166
+ "description": "首次发布开始日期(格式yyyy-MM-dd)",
59167
+ "example": "2020-01-01"
59168
+ },
59169
+ "endDate": {
59170
+ "type": "string",
59171
+ "description": "首次发布结束日期(格式yyyy-MM-dd)",
59172
+ "example": "2026-08-12"
59173
+ },
59174
+ "pageNum": {
59175
+ "type": "integer",
59176
+ "format": "int32",
59177
+ "description": "页码。\n最小值:1;",
59178
+ "example": 1
59179
+ },
59180
+ "pageSize": {
59181
+ "type": "integer",
59182
+ "format": "int32",
59183
+ "description": "页长。\n最小值:1;\n最大值:500;",
59184
+ "example": 10
59185
+ }
59186
+ }
59187
+ }
59188
+ }
59189
+ },
59190
+ "required": true
59191
+ },
59192
+ "responses": {
59193
+ "200": {
59194
+ "description": "成功响应",
59195
+ "content": {
59196
+ "application/json": {
59197
+ "schema": {
59198
+ "type": "object",
59199
+ "properties": {
59200
+ "cbCode": {
59201
+ "type": "string",
59202
+ "description": "可转债代码,预案阶段可能为空",
59203
+ "example": "110059"
59204
+ },
59205
+ "cbName": {
59206
+ "type": "string",
59207
+ "description": "可转债简称;未生成转债代码时使用预案证券简称",
59208
+ "example": "浦发转债"
59209
+ },
59210
+ "stockCode": {
59211
+ "type": "string",
59212
+ "description": "正股代码",
59213
+ "example": "600000"
59214
+ },
59215
+ "stockName": {
59216
+ "type": "string",
59217
+ "description": "正股或预案证券简称",
59218
+ "example": "浦发银行"
59219
+ },
59220
+ "issuer": {
59221
+ "type": "string",
59222
+ "description": "发行人名称",
59223
+ "example": "上海浦东发展银行股份有限公司"
59224
+ },
59225
+ "cbType": {
59226
+ "type": "integer",
59227
+ "format": "int32",
59228
+ "allOf": [
59229
+ {
59230
+ "type": "integer",
59231
+ "format": "int32",
59232
+ "description": "1代表常规债券,2代表分离交易可转债,3代表本息分离交易债券,4代表可交换公司债券",
59233
+ "enum": [
59234
+ 1
59235
+ ]
59236
+ }
59237
+ ],
59238
+ "description": "可转债性质",
59239
+ "example": 1
59240
+ },
59241
+ "firstPublishDate": {
59242
+ "type": "string",
59243
+ "description": "首次信息发布日期",
59244
+ "example": "2019-03-12 00:00:00"
59245
+ },
59246
+ "processCode": {
59247
+ "type": "integer",
59248
+ "format": "int32",
59249
+ "description": "发行事件进程代码",
59250
+ "example": 3
59251
+ },
59252
+ "processName": {
59253
+ "type": "string",
59254
+ "description": "发行事件进程说明",
59255
+ "example": "证监会核准"
59256
+ },
59257
+ "proposalDate": {
59258
+ "type": "string",
59259
+ "description": "预案公告日期",
59260
+ "example": "2019-03-12 00:00:00"
59261
+ },
59262
+ "validStartDate": {
59263
+ "type": "string",
59264
+ "description": "预案有效期起始日,可为空",
59265
+ "example": "2019-03-12 00:00:00"
59266
+ },
59267
+ "validEndDate": {
59268
+ "type": "string",
59269
+ "description": "预案有效期截止日,可为空",
59270
+ "example": "2020-03-11 00:00:00"
59271
+ },
59272
+ "shareholderMeetingDate": {
59273
+ "type": "string",
59274
+ "description": "股东大会决议公告日期,可为空",
59275
+ "example": "2019-04-10 00:00:00"
59276
+ },
59277
+ "reviewDate": {
59278
+ "type": "string",
59279
+ "description": "发审委审核日期,可为空",
59280
+ "example": "2019-09-05 00:00:00"
59281
+ },
59282
+ "approvalDate": {
59283
+ "type": "string",
59284
+ "description": "证监会审核日期,可为空",
59285
+ "example": "2019-09-20 00:00:00"
59286
+ },
59287
+ "plannedSizeMin": {
59288
+ "type": "number",
59289
+ "description": "计划发行规模下限,单位百万元,可为空",
59290
+ "example": 50000
59291
+ },
59292
+ "plannedSizeMax": {
59293
+ "type": "number",
59294
+ "description": "计划发行规模上限,单位百万元,可为空",
59295
+ "example": 50000
59296
+ },
59297
+ "changeType": {
59298
+ "type": "integer",
59299
+ "format": "int32",
59300
+ "description": "预案变动类型代码,可为空",
59301
+ "example": 1
59302
+ },
59303
+ "changeDescription": {
59304
+ "type": "string",
59305
+ "description": "预案变动说明,可为空",
59306
+ "example": "发行规模调整"
59307
+ },
59308
+ "isImplemented": {
59309
+ "type": "integer",
59310
+ "format": "int32",
59311
+ "allOf": [
59312
+ {
59313
+ "type": "integer",
59314
+ "format": "int32",
59315
+ "description": "0代表未实施,1代表已实施",
59316
+ "enum": [
59317
+ 0
59318
+ ]
59319
+ }
59320
+ ],
59321
+ "description": "是否实施",
59322
+ "example": 1
59323
+ },
59324
+ "pageNum": {
59325
+ "type": "integer",
59326
+ "format": "int32",
59327
+ "description": "page number",
59328
+ "example": 1
59329
+ },
59330
+ "pageSize": {
59331
+ "type": "integer",
59332
+ "format": "int32",
59333
+ "description": "page size",
59334
+ "example": 100
59335
+ },
59336
+ "totalCount": {
59337
+ "type": "integer",
59338
+ "format": "int32",
59339
+ "description": "total count",
59340
+ "example": 0
59341
+ }
59342
+ }
59343
+ }
59344
+ }
59345
+ }
59346
+ },
59347
+ "400": {
59348
+ "description": "无效请求"
59349
+ },
59350
+ "500": {
59351
+ "description": "服务器内部错误"
59352
+ }
59353
+ },
59354
+ "security": [
59355
+ {
59356
+ "ApiKeyAuth": []
59357
+ }
59358
+ ]
59359
+ },
59360
+ "x-apikey-supported": [
59361
+ "resource"
59362
+ ]
59363
+ },
59364
+ "/cb/daily": {
59365
+ "post": {
59366
+ "tags": [
59367
+ " 可转债日行情"
59368
+ ],
59369
+ "summary": " 可转债日行情",
59370
+ "description": "支持通过单个可转债代码、批量可转债代码列表,结合指定的交易日期范围(格式yyyy-MM-dd),分页查询可转债的日行情数据,包含可转债基本信息、当日行情价格(昨收、开盘、最高、最低、收盘价)、涨跌幅、换手率、成交量、成交金额等交易指标,以及转股价、正股价、转股价值、转股溢价率等转股相关估值指标,还有剩余期限、流通市值占比,以及修正、赎回、回售的触发价格和触发天数等条款相关数据,可用于可转债的行情监测、估值分析及条款研究。",
59371
+ "operationId": "list_cb_daily",
59372
+ "requestBody": {
59373
+ "description": "支持通过单个可转债代码、批量可转债代码列表,结合指定的交易日期范围(格式yyyy-MM-dd),分页查询可转债的日行情数据,包含可转债基本信息、当日行情价格(昨收、开盘、最高、最低、收盘价)、涨跌幅、换手率、成交量、成交金额等交易指标,以及转股价、正股价、转股价值、转股溢价率等转股相关估值指标,还有剩余期限、流通市值占比,以及修正、赎回、回售的触发价格和触发天数等条款相关数据,可用于可转债的行情监测、估值分析及条款研究。",
59374
+ "content": {
59375
+ "application/json": {
59376
+ "schema": {
59377
+ "type": "object",
59378
+ "properties": {
59379
+ "cbCode": {
59380
+ "type": "string",
59381
+ "description": "可转债代码【与cbCodes组成多选一参数,必须且只能传递其中一个】",
59382
+ "example": "110059"
59383
+ },
59384
+ "cbCodes": {
59385
+ "type": "array",
59386
+ "description": "可转债代码列表【与cbCode组成多选一参数,必须且只能传递其中一个】",
59387
+ "example": [
59388
+ "110059",
59389
+ "113052"
59390
+ ],
59391
+ "items": {
59392
+ "type": "string"
59393
+ }
59394
+ },
59395
+ "beginDate": {
59396
+ "type": "string",
59397
+ "description": "交易开始日期(格式yyyy-MM-dd)",
59398
+ "example": "2026-01-01"
59399
+ },
59400
+ "endDate": {
59401
+ "type": "string",
59402
+ "description": "交易结束日期(格式yyyy-MM-dd)",
59403
+ "example": "2026-08-12"
59404
+ },
59405
+ "pageNum": {
59406
+ "type": "integer",
59407
+ "format": "int32",
59408
+ "description": "页码。\n最小值:1;",
59409
+ "example": 1
59410
+ },
59411
+ "pageSize": {
59412
+ "type": "integer",
59413
+ "format": "int32",
59414
+ "description": "页长。\n最小值:1;\n最大值:500;",
59415
+ "example": 10
59416
+ }
59417
+ }
59418
+ }
59419
+ }
59420
+ },
59421
+ "required": true
59422
+ },
59423
+ "responses": {
59424
+ "200": {
59425
+ "description": "成功响应",
59426
+ "content": {
59427
+ "application/json": {
59428
+ "schema": {
59429
+ "type": "object",
59430
+ "properties": {
59431
+ "cbCode": {
59432
+ "type": "string",
59433
+ "description": "可转债代码",
59434
+ "example": "110059"
59435
+ },
59436
+ "cbName": {
59437
+ "type": "string",
59438
+ "description": "可转债简称",
59439
+ "example": "浦发转债"
59440
+ },
59441
+ "tradeDate": {
59442
+ "type": "string",
59443
+ "description": "交易日期",
59444
+ "example": "2026-08-11 00:00:00"
59445
+ },
59446
+ "cbType": {
59447
+ "type": "integer",
59448
+ "format": "int32",
59449
+ "allOf": [
59450
+ {
59451
+ "type": "integer",
59452
+ "format": "int32",
59453
+ "description": "1代表常规债券,2代表分离交易可转债,3代表本息分离交易债券,4代表可交换公司债券",
59454
+ "enum": [
59455
+ 1
59456
+ ]
59457
+ }
59458
+ ],
59459
+ "description": "可转债类型",
59460
+ "example": 1
59461
+ },
59462
+ "maturityYears": {
59463
+ "type": "number",
59464
+ "description": "债券期限,单位年",
59465
+ "example": 6
59466
+ },
59467
+ "preClose": {
59468
+ "type": "number",
59469
+ "description": "昨收盘价,单位元",
59470
+ "example": 125.2
59471
+ },
59472
+ "openPrice": {
59473
+ "type": "number",
59474
+ "description": "开盘价,单位元",
59475
+ "example": 125.35
59476
+ },
59477
+ "highPrice": {
59478
+ "type": "number",
59479
+ "description": "最高价,单位元",
59480
+ "example": 126.1
59481
+ },
59482
+ "lowPrice": {
59483
+ "type": "number",
59484
+ "description": "最低价,单位元",
59485
+ "example": 124.8
59486
+ },
59487
+ "closePrice": {
59488
+ "type": "number",
59489
+ "description": "收盘价,单位元",
59490
+ "example": 125.9
59491
+ },
59492
+ "pctChange": {
59493
+ "type": "number",
59494
+ "description": "涨跌幅,单位%",
59495
+ "example": 0.559105
59496
+ },
59497
+ "turnoverRate": {
59498
+ "type": "number",
59499
+ "description": "换手率,单位%",
59500
+ "example": 2.3567
59501
+ },
59502
+ "volume": {
59503
+ "type": "number",
59504
+ "description": "成交量;字典字段说明与备注的单位存在冲突,上线前确认",
59505
+ "example": 128500
59506
+ },
59507
+ "amount": {
59508
+ "type": "number",
59509
+ "description": "成交金额,单位元",
59510
+ "example": 16175625
59511
+ },
59512
+ "tradeCount": {
59513
+ "type": "integer",
59514
+ "format": "int32",
59515
+ "description": "成交笔数",
59516
+ "example": 3560
59517
+ },
59518
+ "conversionPrice": {
59519
+ "type": "number",
59520
+ "description": "当日最新转股价,单位元/股",
59521
+ "example": 12.8
59522
+ },
59523
+ "stockPrice": {
59524
+ "type": "number",
59525
+ "description": "当日正股价格,单位元",
59526
+ "example": 9.65
59527
+ },
59528
+ "conversionValue": {
59529
+ "type": "number",
59530
+ "description": "转股价值",
59531
+ "example": 75.390625
59532
+ },
59533
+ "conversionPremiumRate": {
59534
+ "type": "number",
59535
+ "description": "转股溢价率,单位%",
59536
+ "example": 67
59537
+ },
59538
+ "conversionParity": {
59539
+ "type": "number",
59540
+ "description": "转换平价",
59541
+ "example": 16.7
59542
+ },
59543
+ "remainingYears": {
59544
+ "type": "number",
59545
+ "description": "剩余期限,单位年",
59546
+ "example": 1.215
59547
+ },
59548
+ "circulatingValueRatio": {
59549
+ "type": "number",
59550
+ "description": "转债流通市值占比,单位%",
59551
+ "example": 0.35
59552
+ },
59553
+ "resetTriggerPrice": {
59554
+ "type": "number",
59555
+ "description": "转股价修正触发价,单位元",
59556
+ "example": 10.24
59557
+ },
59558
+ "resetTriggerDays": {
59559
+ "type": "integer",
59560
+ "format": "int32",
59561
+ "description": "修正条件已触发天数",
59562
+ "example": 3
59563
+ },
59564
+ "callTriggerPrice": {
59565
+ "type": "number",
59566
+ "description": "强赎触发价,单位元",
59567
+ "example": 16.64
59568
+ },
59569
+ "callTriggerDays": {
59570
+ "type": "integer",
59571
+ "format": "int32",
59572
+ "description": "强赎条件已触发天数",
59573
+ "example": 5
59574
+ },
59575
+ "putTriggerPrice": {
59576
+ "type": "number",
59577
+ "description": "回售触发价,单位元",
59578
+ "example": 8.96
59579
+ },
59580
+ "putTriggerDays": {
59581
+ "type": "integer",
59582
+ "format": "int32",
59583
+ "description": "回售条件已触发天数",
59584
+ "example": 0
59585
+ },
59586
+ "pageNum": {
59587
+ "type": "integer",
59588
+ "format": "int32",
59589
+ "description": "page number",
59590
+ "example": 1
59591
+ },
59592
+ "pageSize": {
59593
+ "type": "integer",
59594
+ "format": "int32",
59595
+ "description": "page size",
59596
+ "example": 100
59597
+ },
59598
+ "totalCount": {
59599
+ "type": "integer",
59600
+ "format": "int32",
59601
+ "description": "total count",
59602
+ "example": 0
59603
+ }
59604
+ }
59605
+ }
59606
+ }
59607
+ }
59608
+ },
59609
+ "400": {
59610
+ "description": "无效请求"
59611
+ },
59612
+ "500": {
59613
+ "description": "服务器内部错误"
59614
+ }
59615
+ },
59616
+ "security": [
59617
+ {
59618
+ "ApiKeyAuth": []
59619
+ }
59620
+ ]
59621
+ },
59622
+ "x-apikey-supported": [
59623
+ "resource"
59624
+ ]
59625
+ },
59626
+ "/cb/valuation": {
59627
+ "post": {
59628
+ "tags": [
59629
+ "可转债估值指标"
59630
+ ],
59631
+ "summary": "可转债估值指标",
59632
+ "description": "支持通过单个可转债代码、可转债代码列表,结合交易开始日期(格式yyyy-MM-dd)、交易结束日期(格式yyyy-MM-dd),并可通过页码、页长控制分页,查询可转债的各类核心估值指标数据,包括可转债基本信息、全价收盘价、正股收盘价、应计天数、应计利息、剩余年限、到期收益率、当前收益率、久期、修正久期、凸性、转股相关指标、纯债相关指标、双低值、回售价等,可用于可转债的估值分析、投资决策参考等场景。",
59633
+ "operationId": "list_cb_valuation",
59634
+ "requestBody": {
59635
+ "description": "支持通过单个可转债代码、可转债代码列表,结合交易开始日期(格式yyyy-MM-dd)、交易结束日期(格式yyyy-MM-dd),并可通过页码、页长控制分页,查询可转债的各类核心估值指标数据,包括可转债基本信息、全价收盘价、正股收盘价、应计天数、应计利息、剩余年限、到期收益率、当前收益率、久期、修正久期、凸性、转股相关指标、纯债相关指标、双低值、回售价等,可用于可转债的估值分析、投资决策参考等场景。",
59636
+ "content": {
59637
+ "application/json": {
59638
+ "schema": {
59639
+ "type": "object",
59640
+ "properties": {
59641
+ "cbCode": {
59642
+ "type": "string",
59643
+ "description": "可转债代码【与cbCodes组成多选一参数,必须且只能传递其中一个】",
59644
+ "example": "110059"
59645
+ },
59646
+ "cbCodes": {
59647
+ "type": "array",
59648
+ "description": "可转债代码列表【与cbCode组成多选一参数,必须且只能传递其中一个】",
59649
+ "example": [
59650
+ "110059",
59651
+ "113052"
59652
+ ],
59653
+ "items": {
59654
+ "type": "string"
59655
+ }
59656
+ },
59657
+ "beginDate": {
59658
+ "type": "string",
59659
+ "description": "交易开始日期(格式yyyy-MM-dd)",
59660
+ "example": "2026-01-01"
59661
+ },
59662
+ "endDate": {
59663
+ "type": "string",
59664
+ "description": "交易结束日期(格式yyyy-MM-dd)",
59665
+ "example": "2026-08-12"
59666
+ },
59667
+ "pageNum": {
59668
+ "type": "integer",
59669
+ "format": "int32",
59670
+ "description": "页码。\n最小值:1;",
59671
+ "example": 1
59672
+ },
59673
+ "pageSize": {
59674
+ "type": "integer",
59675
+ "format": "int32",
59676
+ "description": "页长。\n最小值:1;\n最大值:500;",
59677
+ "example": 10
59678
+ }
59679
+ }
59680
+ }
59681
+ }
59682
+ },
59683
+ "required": true
59684
+ },
59685
+ "responses": {
59686
+ "200": {
59687
+ "description": "成功响应",
59688
+ "content": {
59689
+ "application/json": {
59690
+ "schema": {
59691
+ "type": "object",
59692
+ "properties": {
59693
+ "cbCode": {
59694
+ "type": "string",
59695
+ "description": "可转债代码",
59696
+ "example": "110059"
59697
+ },
59698
+ "cbName": {
59699
+ "type": "string",
59700
+ "description": "可转债简称",
59701
+ "example": "浦发转债"
59702
+ },
59703
+ "tradeDate": {
59704
+ "type": "string",
59705
+ "description": "交易日期",
59706
+ "example": "2026-08-11 00:00:00"
59707
+ },
59708
+ "marketCode": {
59709
+ "type": "string",
59710
+ "description": "证券市场代码",
59711
+ "example": "83"
59712
+ },
59713
+ "fullPrice": {
59714
+ "type": "number",
59715
+ "description": "全价收盘价,单位元",
59716
+ "example": 126.152
59717
+ },
59718
+ "stockClose": {
59719
+ "type": "number",
59720
+ "description": "正股收盘价,单位元",
59721
+ "example": 9.65
59722
+ },
59723
+ "accruedDays": {
59724
+ "type": "integer",
59725
+ "format": "int32",
59726
+ "description": "计息天数",
59727
+ "example": 288
59728
+ },
59729
+ "accruedInterest": {
59730
+ "type": "number",
59731
+ "description": "每百元应计利息,单位元",
59732
+ "example": 0.252054794521
59733
+ },
59734
+ "remainingYears": {
59735
+ "type": "number",
59736
+ "description": "待偿期,单位年",
59737
+ "example": 1.215
59738
+ },
59739
+ "ytm": {
59740
+ "type": "number",
59741
+ "description": "收盘价到期收益率,单位%",
59742
+ "example": -8.3567
59743
+ },
59744
+ "currentYield": {
59745
+ "type": "number",
59746
+ "description": "当期收益率,单位%",
59747
+ "example": 1.5885
59748
+ },
59749
+ "duration": {
59750
+ "type": "number",
59751
+ "description": "收盘价麦氏久期",
59752
+ "example": 1.1523
59753
+ },
59754
+ "modifiedDuration": {
59755
+ "type": "number",
59756
+ "description": "收盘价修正久期",
59757
+ "example": 1.1356
59758
+ },
59759
+ "convexity": {
59760
+ "type": "number",
59761
+ "description": "收盘价凸性",
59762
+ "example": 2.1567
59763
+ },
59764
+ "conversionPrice": {
59765
+ "type": "number",
59766
+ "description": "转股价,单位元/股",
59767
+ "example": 12.8
59768
+ },
59769
+ "conversionRatio": {
59770
+ "type": "number",
59771
+ "description": "转股比例",
59772
+ "example": 7.8125
59773
+ },
59774
+ "conversionValue": {
59775
+ "type": "number",
59776
+ "description": "转股价值",
59777
+ "example": 75.390625
59778
+ },
59779
+ "conversionPremium": {
59780
+ "type": "number",
59781
+ "description": "转股溢价",
59782
+ "example": 50.509375
59783
+ },
59784
+ "conversionPremiumRate": {
59785
+ "type": "number",
59786
+ "description": "转股溢价率,单位%",
59787
+ "example": 66.9963
59788
+ },
59789
+ "conversionParity": {
59790
+ "type": "number",
59791
+ "description": "转换平价",
59792
+ "example": 16.7
59793
+ },
59794
+ "pureBondValue": {
59795
+ "type": "number",
59796
+ "description": "纯债价值",
59797
+ "example": 98.5
59798
+ },
59799
+ "pureBondPremium": {
59800
+ "type": "number",
59801
+ "description": "纯债溢价",
59802
+ "example": 27.4
59803
+ },
59804
+ "pureBondPremiumRate": {
59805
+ "type": "number",
59806
+ "description": "纯债溢价率,单位%",
59807
+ "example": 27.8173
59808
+ },
59809
+ "doubleLow": {
59810
+ "type": "number",
59811
+ "description": "双低值",
59812
+ "example": 192.8963
59813
+ },
59814
+ "putPrice": {
59815
+ "type": "number",
59816
+ "description": "回售价,单位元/张,可为空",
59817
+ "example": 100
59818
+ },
59819
+ "pageNum": {
59820
+ "type": "integer",
59821
+ "format": "int32",
59822
+ "description": "page number",
59823
+ "example": 1
59824
+ },
59825
+ "pageSize": {
59826
+ "type": "integer",
59827
+ "format": "int32",
59828
+ "description": "page size",
59829
+ "example": 100
59830
+ },
59831
+ "totalCount": {
59832
+ "type": "integer",
59833
+ "format": "int32",
59834
+ "description": "total count",
59835
+ "example": 0
59836
+ }
59837
+ }
59838
+ }
59839
+ }
59840
+ }
59841
+ },
59842
+ "400": {
59843
+ "description": "无效请求"
59844
+ },
59845
+ "500": {
59846
+ "description": "服务器内部错误"
59847
+ }
59848
+ },
59849
+ "security": [
59850
+ {
59851
+ "ApiKeyAuth": []
59852
+ }
59853
+ ]
59854
+ },
59855
+ "x-apikey-supported": [
59856
+ "resource"
59857
+ ]
59858
+ },
59859
+ "/macro/retail-sales-area": {
59860
+ "post": {
59861
+ "tags": [
59862
+ "城乡社会消费品零售总额指标"
59863
+ ],
59864
+ "summary": "城乡社会消费品零售总额指标",
59865
+ "description": "支持通过指标代码列表、截止日期范围(格式为yyyy-MM-dd)、页码和页长,查询城乡社会消费品零售总额相关指标数据,涵盖城镇和农村的当期值、累计值、同比增长率、累计增长率等,返回指标中文名称、信息发布日期(格式为yyyy-MM-dd HH:mm:ss)、指标代码、截止日期(格式为yyyy-MM-dd HH:mm:ss)、指标数据,可用于宏观消费市场分析、城乡消费趋势对比等场景。",
59866
+ "operationId": "list_macro_retail_area",
59867
+ "requestBody": {
59868
+ "description": "支持通过指标代码列表、截止日期范围(格式为yyyy-MM-dd)、页码和页长,查询城乡社会消费品零售总额相关指标数据,涵盖城镇和农村的当期值、累计值、同比增长率、累计增长率等,返回指标中文名称、信息发布日期(格式为yyyy-MM-dd HH:mm:ss)、指标代码、截止日期(格式为yyyy-MM-dd HH:mm:ss)、指标数据,可用于宏观消费市场分析、城乡消费趋势对比等场景。",
59869
+ "content": {
59870
+ "application/json": {
59871
+ "schema": {
59872
+ "type": "object",
59873
+ "properties": {
59874
+ "indCodes": {
59875
+ "type": "array",
59876
+ "allOf": [
59877
+ {
59878
+ "type": "array",
59879
+ "description": "110232455代表城镇社会消费品零售总额当期值,110232456代表城镇社会消费品零售总额累计值,110232460代表城镇社会消费品零售总额同比增长率,110232459代表城镇社会消费品零售总额累计增长率,110232462代表乡村社会消费品零售总额当期值,110232461代表乡村社会消费品零售总额累计值,110232468代表乡村社会消费品零售总额同比增长率,110232466代表乡村社会消费品零售总额累计增长率",
59880
+ "enum": [
59881
+ "110232455"
59882
+ ],
59883
+ "items": {
59884
+ "type": "string"
59885
+ }
59886
+ }
59887
+ ],
59888
+ "description": "指标代码列表;为空时返回本接口全部指标",
59889
+ "example": [
59890
+ 110232455,
59891
+ 110232456
59892
+ ],
59893
+ "items": {
59894
+ "type": "string"
59895
+ }
59896
+ },
59897
+ "beginDate": {
59898
+ "type": "string",
59899
+ "description": "截止日期起始值,格式yyyy-MM-dd",
59900
+ "example": "2023-01-31"
59901
+ },
59902
+ "endDate": {
59903
+ "type": "string",
59904
+ "description": "截止日期结束值,格式yyyy-MM-dd",
59905
+ "example": "2023-09-30"
59906
+ },
59907
+ "pageNum": {
59908
+ "type": "integer",
59909
+ "format": "int32",
59910
+ "description": "页码。\n最小值:1;",
59911
+ "example": 1
59912
+ },
59913
+ "pageSize": {
59914
+ "type": "integer",
59915
+ "format": "int32",
59916
+ "description": "页长。\n最小值:1;\n最大值:500;",
59917
+ "example": 10
59918
+ }
59919
+ }
59920
+ }
59921
+ }
59922
+ },
59923
+ "required": true
59924
+ },
59925
+ "responses": {
59926
+ "200": {
59927
+ "description": "成功响应",
59928
+ "content": {
59929
+ "application/json": {
59930
+ "schema": {
59931
+ "type": "object",
59932
+ "properties": {
59933
+ "indName": {
59934
+ "type": "string",
59935
+ "description": "指标中文名称",
59936
+ "example": "城镇社会消费品零售总额当期值"
59937
+ },
59938
+ "pubDt": {
59939
+ "type": "string",
59940
+ "description": "信息发布日期",
59941
+ "example": "2023-10-18 00:00:00"
59942
+ },
59943
+ "indCode": {
59944
+ "type": "integer",
59945
+ "format": "int32",
59946
+ "description": "指标代码",
59947
+ "example": 110232455
59948
+ },
59949
+ "endDt": {
59950
+ "type": "string",
59951
+ "description": "截止日期",
59952
+ "example": "2023-09-30 00:00:00"
59953
+ },
59954
+ "dataVal": {
59955
+ "type": "number",
59956
+ "description": "指标数据",
59957
+ "example": 33984.6
59958
+ },
59959
+ "pageNum": {
59960
+ "type": "integer",
59961
+ "format": "int32",
59962
+ "description": "page number",
59963
+ "example": 1
59964
+ },
59965
+ "pageSize": {
59966
+ "type": "integer",
59967
+ "format": "int32",
59968
+ "description": "page size",
59969
+ "example": 100
59970
+ },
59971
+ "totalCount": {
59972
+ "type": "integer",
59973
+ "format": "int32",
59974
+ "description": "total count",
59975
+ "example": 0
59976
+ }
59977
+ }
59978
+ }
59979
+ }
59980
+ }
59981
+ },
59982
+ "400": {
59983
+ "description": "无效请求"
59984
+ },
59985
+ "500": {
59986
+ "description": "服务器内部错误"
59987
+ }
59988
+ },
59989
+ "security": [
59990
+ {
59991
+ "ApiKeyAuth": []
59992
+ }
59993
+ ]
59994
+ }
59995
+ },
59996
+ "/macro/exchange-rates": {
59997
+ "post": {
59998
+ "tags": [
59999
+ "人民币汇率查询"
60000
+ ],
60001
+ "summary": "人民币汇率查询",
60002
+ "description": "支持通过货币代码、日期范围(开始日期和结束日期格式为yyyy-MM-dd)进行筛选,并可通过页码和页大小控制分页,查询人民币汇率数据,返回货币代码、发布日期(格式yyyy-MM-dd HH:mm:ss)、数据来源、汇率值等核心信息,适用于汇率走势分析、跨境金融业务参考等场景。",
60003
+ "operationId": "list_macro_exch_rates",
60004
+ "requestBody": {
60005
+ "description": "支持通过货币代码、日期范围(开始日期和结束日期格式为yyyy-MM-dd)进行筛选,并可通过页码和页大小控制分页,查询人民币汇率数据,返回货币代码、发布日期(格式yyyy-MM-dd HH:mm:ss)、数据来源、汇率值等核心信息,适用于汇率走势分析、跨境金融业务参考等场景。",
60006
+ "content": {
60007
+ "application/json": {
60008
+ "schema": {
60009
+ "type": "object",
60010
+ "properties": {
60011
+ "currencyCode": {
60012
+ "type": "array",
60013
+ "allOf": [
60014
+ {
60015
+ "type": "array",
60016
+ "description": "AED代表阿联酋迪拉姆; AUD代表澳元; CAD代表加元; CHF代表瑞士法郎; DKK代表丹麦克朗; EUR代表欧元; GBP代表英镑; HKD代表港元; HUF代表匈牙利福林; JPY代表日元; KRW代表韩元; MOP代表澳门元; MXN代表墨西哥比索; MYR代表马来西亚林吉特; NOK代表挪威克朗; NZD代表新西兰元; PLN代表波兰兹罗提; RUB代表俄罗斯卢布; SEK代表瑞典克朗; SGD代表新加坡元; THB代表泰铢; TRY代表土耳其里拉; USD代表美元; ZAR代表南非兰特;",
60017
+ "enum": [
60018
+ "AED",
60019
+ "AUD",
60020
+ "CAD",
60021
+ "CHF",
60022
+ "DKK",
60023
+ "EUR",
60024
+ "GBP",
60025
+ "HKD",
60026
+ "HUF",
60027
+ "JPY",
60028
+ "KRW",
60029
+ "MOP",
60030
+ "MXN",
60031
+ "MYR",
60032
+ "NOK",
60033
+ "NZD",
60034
+ "PLN",
60035
+ "RUB",
60036
+ "SEK",
60037
+ "SGD",
60038
+ "THB",
60039
+ "TRY",
60040
+ "USD",
60041
+ "ZAR"
60042
+ ],
60043
+ "items": {
60044
+ "type": "string"
60045
+ }
60046
+ }
60047
+ ],
60048
+ "description": "货币代码",
60049
+ "example": [
60050
+ "['USD','AUD']"
60051
+ ],
60052
+ "items": {
60053
+ "type": "string"
60054
+ }
60055
+ },
60056
+ "beginDate": {
60057
+ "type": "string",
60058
+ "description": "开始日期(格式yyyy-MM-dd,对应发布日期)",
60059
+ "example": "2024-01-01"
60060
+ },
60061
+ "endDate": {
60062
+ "type": "string",
60063
+ "description": "结束日期(格式yyyy-MM-dd,对应发布日期)",
60064
+ "example": "2024-12-31"
60065
+ },
60066
+ "pageNum": {
60067
+ "type": "integer",
60068
+ "format": "int32",
60069
+ "description": "页码。\n最小值:1;",
60070
+ "example": 1
60071
+ },
60072
+ "pageSize": {
60073
+ "type": "integer",
60074
+ "format": "int32",
60075
+ "description": "页长。\n最小值:1;\n最大值:500;",
60076
+ "example": 10
60077
+ }
60078
+ }
60079
+ }
60080
+ }
60081
+ },
60082
+ "required": true
60083
+ },
60084
+ "responses": {
60085
+ "200": {
60086
+ "description": "成功响应",
60087
+ "content": {
60088
+ "application/json": {
60089
+ "schema": {
60090
+ "type": "object",
60091
+ "properties": {
60092
+ "currencyCode": {
60093
+ "type": "string",
60094
+ "description": "货币代码",
60095
+ "example": "USD"
60096
+ },
60097
+ "date": {
60098
+ "type": "string",
60099
+ "description": "发布日期",
60100
+ "example": "2026-08-05 00:00:00"
60101
+ },
60102
+ "source": {
60103
+ "type": "string",
60104
+ "description": "来源",
60105
+ "example": "CFETS"
60106
+ },
60107
+ "exchangeRate": {
60108
+ "type": "number",
60109
+ "description": "汇率值",
60110
+ "example": 7.1234
60111
+ },
60112
+ "pageNum": {
60113
+ "type": "integer",
60114
+ "format": "int32",
60115
+ "description": "page number",
60116
+ "example": 1
60117
+ },
60118
+ "pageSize": {
60119
+ "type": "integer",
60120
+ "format": "int32",
60121
+ "description": "page size",
60122
+ "example": 100
60123
+ },
60124
+ "totalCount": {
60125
+ "type": "integer",
60126
+ "format": "int32",
60127
+ "description": "total count",
60128
+ "example": 0
60129
+ }
60130
+ }
60131
+ }
60132
+ }
60133
+ }
60134
+ },
60135
+ "400": {
60136
+ "description": "无效请求"
60137
+ },
60138
+ "500": {
60139
+ "description": "服务器内部错误"
60140
+ }
60141
+ },
60142
+ "security": [
60143
+ {
60144
+ "ApiKeyAuth": []
60145
+ }
60146
+ ]
60147
+ },
60148
+ "x-apikey-supported": [
60149
+ "resource"
60150
+ ]
60151
+ },
60152
+ "/macro/fixed-asset-investment": {
60153
+ "post": {
60154
+ "tags": [
60155
+ "固定资产投资指标"
60156
+ ],
60157
+ "summary": "固定资产投资指标",
60158
+ "description": "支持通过指定指标代码列表(可批量,为空时返回全部固定资产投资累计增长率指标)、截止日期范围(格式yyyy-MM-dd),并可通过页码和页大小分页,查询固定资产投资相关指标数据,包括指标中文名称、指标代码、信息发布日期(yyyy-MM-dd HH:mm:ss)、截止日期、指标数据值,可用于宏观经济分析、固定资产投资趋势研究等场景。",
60159
+ "operationId": "list_macro_fixed_asset",
60160
+ "requestBody": {
60161
+ "description": "支持通过指定指标代码列表(可批量,为空时返回全部固定资产投资累计增长率指标)、截止日期范围(格式yyyy-MM-dd),并可通过页码和页大小分页,查询固定资产投资相关指标数据,包括指标中文名称、指标代码、信息发布日期(yyyy-MM-dd HH:mm:ss)、截止日期、指标数据值,可用于宏观经济分析、固定资产投资趋势研究等场景。",
60162
+ "content": {
60163
+ "application/json": {
60164
+ "schema": {
60165
+ "type": "object",
60166
+ "properties": {
60167
+ "indCodes": {
60168
+ "type": "array",
60169
+ "allOf": [
60170
+ {
60171
+ "type": "array",
60172
+ "description": "110115280代表国有及国有控股固定资产投资累计增长率,110114485代表新建固定资产投资累计增长率,110114484代表扩建固定资产投资累计增长率,110114483代表改建固定资产投资累计增长率,110114481代表建筑安装工程固定资产投资累计增长率,110114479代表设备工器具购置固定资产投资累计增长率,110114672代表其他费用固定资产投资累计增长率",
60173
+ "enum": [
60174
+ "110115280"
60175
+ ],
60176
+ "items": {
60177
+ "type": "string"
60178
+ }
60179
+ }
60180
+ ],
60181
+ "description": "指标代码列表;为空时返回本接口全部指标",
60182
+ "example": [
60183
+ 110115280,
60184
+ 110114485
60185
+ ],
60186
+ "items": {
60187
+ "type": "string"
60188
+ }
60189
+ },
60190
+ "beginDate": {
60191
+ "type": "string",
60192
+ "description": "截止日期起始值,格式yyyy-MM-dd",
60193
+ "example": "2023-01-31"
60194
+ },
60195
+ "endDate": {
60196
+ "type": "string",
60197
+ "description": "截止日期结束值,格式yyyy-MM-dd",
60198
+ "example": "2023-09-30"
60199
+ },
60200
+ "pageNum": {
60201
+ "type": "integer",
60202
+ "format": "int32",
60203
+ "description": "页码。\n最小值:1;",
60204
+ "example": 1
60205
+ },
60206
+ "pageSize": {
60207
+ "type": "integer",
60208
+ "format": "int32",
60209
+ "description": "页长。\n最小值:1;\n最大值:500;",
60210
+ "example": 10
60211
+ }
60212
+ }
60213
+ }
60214
+ }
60215
+ },
60216
+ "required": true
60217
+ },
60218
+ "responses": {
60219
+ "200": {
60220
+ "description": "成功响应",
60221
+ "content": {
60222
+ "application/json": {
60223
+ "schema": {
60224
+ "type": "object",
60225
+ "properties": {
60226
+ "indName": {
60227
+ "type": "string",
60228
+ "description": "指标中文名称",
60229
+ "example": "国有及国有控股固定资产投资累计增长率"
60230
+ },
60231
+ "pubDt": {
60232
+ "type": "string",
60233
+ "description": "信息发布日期",
60234
+ "example": "2023-10-18 00:00:00"
60235
+ },
60236
+ "indCode": {
60237
+ "type": "integer",
60238
+ "format": "int32",
60239
+ "description": "指标代码",
60240
+ "example": 110115280
60241
+ },
60242
+ "endDt": {
60243
+ "type": "string",
60244
+ "description": "截止日期",
60245
+ "example": "2023-09-30 00:00:00"
60246
+ },
60247
+ "dataVal": {
60248
+ "type": "number",
60249
+ "description": "指标数据",
60250
+ "example": 7.2
60251
+ },
60252
+ "pageNum": {
60253
+ "type": "integer",
60254
+ "format": "int32",
60255
+ "description": "page number",
60256
+ "example": 1
60257
+ },
60258
+ "pageSize": {
60259
+ "type": "integer",
60260
+ "format": "int32",
60261
+ "description": "page size",
60262
+ "example": 100
60263
+ },
60264
+ "totalCount": {
60265
+ "type": "integer",
60266
+ "format": "int32",
60267
+ "description": "total count",
60268
+ "example": 0
60269
+ }
60270
+ }
60271
+ }
60272
+ }
60273
+ }
60274
+ },
60275
+ "400": {
60276
+ "description": "无效请求"
60277
+ },
60278
+ "500": {
60279
+ "description": "服务器内部错误"
60280
+ }
60281
+ },
60282
+ "security": [
60283
+ {
60284
+ "ApiKeyAuth": []
60285
+ }
60286
+ ]
60287
+ },
60288
+ "x-apikey-supported": [
60289
+ "resource"
60290
+ ]
60291
+ },
60292
+ "/macro/goods-trad": {
60293
+ "post": {
60294
+ "tags": [
60295
+ "货物贸易指标"
60296
+ ],
60297
+ "summary": "货物贸易指标",
60298
+ "description": "货物贸易指标",
60299
+ "operationId": "list_macro_goods_trade",
60300
+ "requestBody": {
60301
+ "description": "货物贸易指标",
60302
+ "content": {
60303
+ "application/json": {
60304
+ "schema": {
60305
+ "type": "object",
60306
+ "properties": {
60307
+ "indCodes": {
60308
+ "type": "array",
60309
+ "allOf": [
60310
+ {
60311
+ "type": "array",
60312
+ "description": "110081729代表进出口总值当期值,110081749代表进出口总值同比增长率,110183587代表进出口总值累计值,110183586代表进出口总值累计增长率,110127295代表出口总值当期值,110006286代表出口总值同比增长率,110183585代表出口总值累计值,110183584代表出口总值累计增长率,110005221代表进口总值当期值,110005222代表进口总值同比增长率,110183583代表进口总值累计值,110183582代表进口总值累计增长率,210032348代表进出口差额当期值,210032347代表进出口差额累计值",
60313
+ "enum": [
60314
+ "110081729"
60315
+ ],
60316
+ "items": {
60317
+ "type": "string"
60318
+ }
60319
+ }
60320
+ ],
60321
+ "description": "指标代码列表;为空时返回本接口全部指标",
60322
+ "example": [
60323
+ 110081729,
60324
+ 110127295
60325
+ ],
60326
+ "items": {
60327
+ "type": "string"
60328
+ }
60329
+ },
60330
+ "beginDate": {
60331
+ "type": "string",
60332
+ "description": "截止日期起始值,格式yyyy-MM-dd",
60333
+ "example": "2023-01-31"
60334
+ },
60335
+ "endDate": {
60336
+ "type": "string",
60337
+ "description": "截止日期结束值,格式yyyy-MM-dd",
60338
+ "example": "2023-09-30"
60339
+ },
60340
+ "pageNum": {
60341
+ "type": "integer",
60342
+ "format": "int32",
60343
+ "description": "页码。\n最小值:1;",
60344
+ "example": 1
60345
+ },
60346
+ "pageSize": {
60347
+ "type": "integer",
60348
+ "format": "int32",
60349
+ "description": "页长。\n最小值:1;\n最大值:500;",
60350
+ "example": 10
60351
+ }
60352
+ }
60353
+ }
60354
+ }
60355
+ },
60356
+ "required": true
60357
+ },
60358
+ "responses": {
60359
+ "200": {
60360
+ "description": "成功响应",
60361
+ "content": {
60362
+ "application/json": {
60363
+ "schema": {
60364
+ "type": "object",
60365
+ "properties": {
60366
+ "indName": {
60367
+ "type": "string",
60368
+ "description": "指标中文名称",
60369
+ "example": "进出口总值当期值"
60370
+ },
60371
+ "pubDt": {
60372
+ "type": "string",
60373
+ "description": "信息发布日期",
60374
+ "example": "2023-10-18 00:00:00"
60375
+ },
60376
+ "indCode": {
60377
+ "type": "integer",
60378
+ "format": "int32",
60379
+ "description": "指标代码",
60380
+ "example": 110081729
60381
+ },
60382
+ "endDt": {
60383
+ "type": "string",
60384
+ "description": "截止日期",
60385
+ "example": "2023-09-30 00:00:00"
60386
+ },
60387
+ "dataVal": {
60388
+ "type": "number",
60389
+ "description": "指标数据",
60390
+ "example": 520000
60391
+ },
60392
+ "pageNum": {
60393
+ "type": "integer",
60394
+ "format": "int32",
60395
+ "description": "page number",
60396
+ "example": 1
60397
+ },
60398
+ "pageSize": {
60399
+ "type": "integer",
60400
+ "format": "int32",
60401
+ "description": "page size",
60402
+ "example": 100
60403
+ },
60404
+ "totalCount": {
60405
+ "type": "integer",
60406
+ "format": "int32",
60407
+ "description": "total count",
60408
+ "example": 0
60409
+ }
60410
+ }
60411
+ }
60412
+ }
60413
+ }
60414
+ },
60415
+ "400": {
60416
+ "description": "无效请求"
60417
+ },
60418
+ "500": {
60419
+ "description": "服务器内部错误"
60420
+ }
60421
+ },
60422
+ "security": [
60423
+ {
60424
+ "ApiKeyAuth": []
60425
+ }
60426
+ ]
60427
+ },
60428
+ "x-apikey-supported": [
60429
+ "resource"
60430
+ ]
60431
+ },
60432
+ "/macro/social-financing-flow": {
60433
+ "post": {
60434
+ "tags": [
60435
+ "社会融资规模增量指标"
60436
+ ],
60437
+ "summary": "社会融资规模增量指标",
60438
+ "description": "支持通过指标代码列表(可批量指定,为空时返回全部指标)、统计截止日期范围(格式yyyy-MM-dd),并可配合页码、页大小的分页参数,查询社会融资规模增量相关指标数据,返回指标中文名称、指标代码、信息发布日期、统计截止日期、指标数值,可用于宏观经济形势分析、社会融资市场趋势研究等场景",
60439
+ "operationId": "list_macro_soc_fin",
60440
+ "requestBody": {
60441
+ "description": "支持通过指标代码列表(可批量指定,为空时返回全部指标)、统计截止日期范围(格式yyyy-MM-dd),并可配合页码、页大小的分页参数,查询社会融资规模增量相关指标数据,返回指标中文名称、指标代码、信息发布日期、统计截止日期、指标数值,可用于宏观经济形势分析、社会融资市场趋势研究等场景",
60442
+ "content": {
60443
+ "application/json": {
60444
+ "schema": {
60445
+ "type": "object",
60446
+ "properties": {
60447
+ "indCodes": {
60448
+ "type": "array",
60449
+ "allOf": [
60450
+ {
60451
+ "type": "array",
60452
+ "description": "150000075代表社会融资规模增量,150000076代表人民币贷款,150000077代表外币贷款(折合人民币),150000664代表委托贷款,150000665代表信托贷款,150000666代表未贴现银行承兑汇票,150000667代表企业债券净融资,150008052代表政府债券,150000668代表非金融企业境内股票融资,150008054代表存款类金融机构资产支持证券,150008055代表贷款核销",
60453
+ "enum": [
60454
+ "150000075"
60455
+ ],
60456
+ "items": {
60457
+ "type": "string"
60458
+ }
60459
+ }
60460
+ ],
60461
+ "description": "指标代码列表;为空时返回本接口全部指标",
60462
+ "example": [
60463
+ 150000075,
60464
+ 150000076
60465
+ ],
60466
+ "items": {
60467
+ "type": "string"
60468
+ }
60469
+ },
60470
+ "beginDate": {
60471
+ "type": "string",
60472
+ "description": "截止日期起始值,格式yyyy-MM-dd",
60473
+ "example": "2023-01-31"
60474
+ },
60475
+ "endDate": {
60476
+ "type": "string",
60477
+ "description": "截止日期结束值,格式yyyy-MM-dd",
60478
+ "example": "2023-09-30"
60479
+ },
60480
+ "pageNum": {
60481
+ "type": "integer",
60482
+ "format": "int32",
60483
+ "description": "页码。\n最小值:1;",
60484
+ "example": 1
60485
+ },
60486
+ "pageSize": {
60487
+ "type": "integer",
60488
+ "format": "int32",
60489
+ "description": "页长。\n最小值:1;\n最大值:500;",
60490
+ "example": 10
60491
+ }
60492
+ }
60493
+ }
60494
+ }
60495
+ },
60496
+ "required": true
60497
+ },
60498
+ "responses": {
60499
+ "200": {
60500
+ "description": "成功响应",
60501
+ "content": {
60502
+ "application/json": {
60503
+ "schema": {
60504
+ "type": "object",
60505
+ "properties": {
60506
+ "indName": {
60507
+ "type": "string",
60508
+ "description": "指标中文名称",
60509
+ "example": "社会融资规模增量"
60510
+ },
60511
+ "pubDt": {
60512
+ "type": "string",
60513
+ "description": "信息发布日期",
60514
+ "example": "2023-10-18 00:00:00"
60515
+ },
60516
+ "indCode": {
60517
+ "type": "integer",
60518
+ "format": "int32",
60519
+ "description": "指标代码",
60520
+ "example": 150000075
60521
+ },
60522
+ "endDt": {
60523
+ "type": "string",
60524
+ "description": "截止日期",
60525
+ "example": "2023-09-30 00:00:00"
60526
+ },
60527
+ "dataVal": {
60528
+ "type": "number",
60529
+ "description": "指标数据",
60530
+ "example": 41200
60531
+ },
60532
+ "pageNum": {
60533
+ "type": "integer",
60534
+ "format": "int32",
60535
+ "description": "page number",
60536
+ "example": 1
60537
+ },
60538
+ "pageSize": {
60539
+ "type": "integer",
60540
+ "format": "int32",
60541
+ "description": "page size",
60542
+ "example": 100
60543
+ },
60544
+ "totalCount": {
60545
+ "type": "integer",
60546
+ "format": "int32",
60547
+ "description": "total count",
60548
+ "example": 0
60549
+ }
60550
+ }
60551
+ }
60552
+ }
60553
+ }
60554
+ },
60555
+ "400": {
60556
+ "description": "无效请求"
60557
+ },
60558
+ "500": {
60559
+ "description": "服务器内部错误"
60560
+ }
60561
+ },
60562
+ "security": [
60563
+ {
60564
+ "ApiKeyAuth": []
60565
+ }
60566
+ ]
60567
+ },
60568
+ "x-apikey-supported": [
60569
+ "resource"
60570
+ ]
60571
+ },
60572
+ "/macro/fiscal-expenditur": {
60573
+ "post": {
60574
+ "tags": [
60575
+ "财政支出指标"
60576
+ ],
60577
+ "summary": "财政支出指标",
60578
+ "description": "支持通过指标代码列表、截止日期范围(格式yyyy-MM-dd)、页码和页大小,查询国家财政支出累计值、国家财政支出累计增长率等财政支出指标数据,返回指标中文名称、信息发布日期(格式yyyy-MM-dd HH:mm:ss)、指标代码、截止日期(格式yyyy-MM-dd HH:mm:ss)、指标具体数值,可用于宏观经济分析、财政政策研究等场景。",
60579
+ "operationId": "list_macro_fiscal_exp",
60580
+ "requestBody": {
60581
+ "description": "支持通过指标代码列表、截止日期范围(格式yyyy-MM-dd)、页码和页大小,查询国家财政支出累计值、国家财政支出累计增长率等财政支出指标数据,返回指标中文名称、信息发布日期(格式yyyy-MM-dd HH:mm:ss)、指标代码、截止日期(格式yyyy-MM-dd HH:mm:ss)、指标具体数值,可用于宏观经济分析、财政政策研究等场景。",
60582
+ "content": {
60583
+ "application/json": {
60584
+ "schema": {
60585
+ "type": "object",
60586
+ "properties": {
60587
+ "indCodes": {
60588
+ "type": "array",
60589
+ "allOf": [
60590
+ {
60591
+ "type": "array",
60592
+ "description": "110002480代表国家财政支出累计值,110002481代表国家财政支出累计增长率",
60593
+ "enum": [
60594
+ "110002480"
60595
+ ],
60596
+ "items": {
60597
+ "type": "string"
60598
+ }
60599
+ }
60600
+ ],
60601
+ "description": "指标代码列表;为空时返回本接口全部指标",
60602
+ "example": [
60603
+ 110002480,
60604
+ 110002481
60605
+ ],
60606
+ "items": {
60607
+ "type": "string"
60608
+ }
60609
+ },
60610
+ "beginDate": {
60611
+ "type": "string",
60612
+ "description": "截止日期起始值,格式yyyy-MM-dd",
60613
+ "example": "2023-01-31"
60614
+ },
60615
+ "endDate": {
60616
+ "type": "string",
60617
+ "description": "截止日期结束值,格式yyyy-MM-dd",
60618
+ "example": "2023-09-30"
60619
+ },
60620
+ "pageNum": {
60621
+ "type": "integer",
60622
+ "format": "int32",
60623
+ "description": "页码。\n最小值:1;",
60624
+ "example": 1
60625
+ },
60626
+ "pageSize": {
60627
+ "type": "integer",
60628
+ "format": "int32",
60629
+ "description": "页长。\n最小值:1;\n最大值:500;",
60630
+ "example": 10
60631
+ }
60632
+ }
60633
+ }
60634
+ }
60635
+ },
60636
+ "required": true
60637
+ },
60638
+ "responses": {
60639
+ "200": {
60640
+ "description": "成功响应",
60641
+ "content": {
60642
+ "application/json": {
60643
+ "schema": {
60644
+ "type": "object",
60645
+ "properties": {
60646
+ "indName": {
60647
+ "type": "string",
60648
+ "description": "指标中文名称",
60649
+ "example": "国家财政支出累计值"
60650
+ },
60651
+ "pubDt": {
60652
+ "type": "string",
60653
+ "description": "信息发布日期",
60654
+ "example": "2023-10-18 00:00:00"
60655
+ },
60656
+ "indCode": {
60657
+ "type": "integer",
60658
+ "format": "int32",
60659
+ "description": "指标代码",
60660
+ "example": 110002480
60661
+ },
60662
+ "endDt": {
60663
+ "type": "string",
60664
+ "description": "截止日期",
60665
+ "example": "2023-09-30 00:00:00"
60666
+ },
60667
+ "dataVal": {
60668
+ "type": "number",
60669
+ "description": "指标数据",
60670
+ "example": 191000
60671
+ },
60672
+ "pageNum": {
60673
+ "type": "integer",
60674
+ "format": "int32",
60675
+ "description": "page number",
60676
+ "example": 1
60677
+ },
60678
+ "pageSize": {
60679
+ "type": "integer",
60680
+ "format": "int32",
60681
+ "description": "page size",
60682
+ "example": 100
60683
+ },
60684
+ "totalCount": {
60685
+ "type": "integer",
60686
+ "format": "int32",
60687
+ "description": "total count",
60688
+ "example": 0
60689
+ }
60690
+ }
60691
+ }
60692
+ }
60693
+ }
60694
+ },
60695
+ "400": {
60696
+ "description": "无效请求"
60697
+ },
60698
+ "500": {
60699
+ "description": "服务器内部错误"
60700
+ }
60701
+ },
60702
+ "security": [
60703
+ {
60704
+ "ApiKeyAuth": []
60705
+ }
60706
+ ]
60707
+ },
60708
+ "x-apikey-supported": [
60709
+ "resource"
60710
+ ]
60711
+ },
60712
+ "/macro/real-estate-inves": {
60713
+ "post": {
60714
+ "tags": [
60715
+ "房地产投资指标"
60716
+ ],
60717
+ "summary": "房地产投资指标",
60718
+ "description": "支持通过指标代码列表(可指定具体房地产投资相关指标,如房地产投资累计值、住宅投资累计增长率、办公楼投资累计值等)、时间范围(开始日期、结束日期,格式为yyyy-MM-dd)以及分页参数,查询房地产投资相关指标数据,返回指标中文名称、信息发布日期、指标代码、截止日期、指标数据,可用于房地产行业投资情况的统计分析与趋势研究。",
60719
+ "operationId": "list_macro_re_invest",
60720
+ "requestBody": {
60721
+ "description": "支持通过指标代码列表(可指定具体房地产投资相关指标,如房地产投资累计值、住宅投资累计增长率、办公楼投资累计值等)、时间范围(开始日期、结束日期,格式为yyyy-MM-dd)以及分页参数,查询房地产投资相关指标数据,返回指标中文名称、信息发布日期、指标代码、截止日期、指标数据,可用于房地产行业投资情况的统计分析与趋势研究。",
60722
+ "content": {
60723
+ "application/json": {
60724
+ "schema": {
60725
+ "type": "object",
60726
+ "properties": {
60727
+ "indCodes": {
60728
+ "type": "array",
60729
+ "allOf": [
60730
+ {
60731
+ "type": "array",
60732
+ "description": "110116170代表房地产投资累计值,110116171代表房地产投资累计增长率,110116448代表房地产住宅投资累计值,110116449代表房地产住宅投资累计增长率,110116444代表房地产办公楼投资累计值,110116445代表房地产办公楼投资累计增长率,110116442代表房地产商业营业用房投资累计值,110116443代表房地产商业营业用房累计增长率",
60733
+ "enum": [
60734
+ "110116170"
60735
+ ],
60736
+ "items": {
60737
+ "type": "string"
60738
+ }
60739
+ }
60740
+ ],
60741
+ "description": "指标代码列表;为空时返回本接口全部指标",
60742
+ "example": [
60743
+ 110116170,
60744
+ 110116171
60745
+ ],
60746
+ "items": {
60747
+ "type": "string"
60748
+ }
60749
+ },
60750
+ "beginDate": {
60751
+ "type": "string",
60752
+ "description": "截止日期起始值,格式yyyy-MM-dd",
60753
+ "example": "2023-01-31"
60754
+ },
60755
+ "endDate": {
60756
+ "type": "string",
60757
+ "description": "截止日期结束值,格式yyyy-MM-dd",
60758
+ "example": "2023-09-30"
60759
+ },
60760
+ "pageNum": {
60761
+ "type": "integer",
60762
+ "format": "int32",
60763
+ "description": "页码。\n最小值:1;",
60764
+ "example": 1
60765
+ },
60766
+ "pageSize": {
60767
+ "type": "integer",
60768
+ "format": "int32",
60769
+ "description": "页长。\n最小值:1;\n最大值:500;",
60770
+ "example": 10
60771
+ }
60772
+ }
60773
+ }
60774
+ }
60775
+ },
60776
+ "required": true
60777
+ },
60778
+ "responses": {
60779
+ "200": {
60780
+ "description": "成功响应",
60781
+ "content": {
60782
+ "application/json": {
60783
+ "schema": {
60784
+ "type": "object",
60785
+ "properties": {
60786
+ "indName": {
60787
+ "type": "string",
60788
+ "description": "指标中文名称",
60789
+ "example": "房地产投资累计值"
60790
+ },
60791
+ "pubDt": {
60792
+ "type": "string",
60793
+ "description": "信息发布日期",
60794
+ "example": "2023-10-18 00:00:00"
60795
+ },
60796
+ "indCode": {
60797
+ "type": "integer",
60798
+ "format": "int32",
60799
+ "description": "指标代码",
60800
+ "example": 110116170
60801
+ },
60802
+ "endDt": {
60803
+ "type": "string",
60804
+ "description": "截止日期",
60805
+ "example": "2023-09-30 00:00:00"
60806
+ },
60807
+ "dataVal": {
60808
+ "type": "number",
60809
+ "description": "指标数据",
60810
+ "example": 87269
60811
+ },
60812
+ "pageNum": {
60813
+ "type": "integer",
60814
+ "format": "int32",
60815
+ "description": "page number",
60816
+ "example": 1
60817
+ },
60818
+ "pageSize": {
60819
+ "type": "integer",
60820
+ "format": "int32",
60821
+ "description": "page size",
60822
+ "example": 100
60823
+ },
60824
+ "totalCount": {
60825
+ "type": "integer",
60826
+ "format": "int32",
60827
+ "description": "total count",
60828
+ "example": 0
60829
+ }
60830
+ }
60831
+ }
60832
+ }
60833
+ }
60834
+ },
60835
+ "400": {
60836
+ "description": "无效请求"
60837
+ },
60838
+ "500": {
60839
+ "description": "服务器内部错误"
60840
+ }
60841
+ },
60842
+ "security": [
60843
+ {
60844
+ "ApiKeyAuth": []
60845
+ }
60846
+ ]
60847
+ },
60848
+ "x-apikey-supported": [
60849
+ "resource"
60850
+ ]
60851
+ },
60852
+ "/macro/rmb-credi": {
60853
+ "post": {
60854
+ "tags": [
60855
+ "人民币信贷收支指标"
60856
+ ],
60857
+ "summary": "人民币信贷收支指标",
60858
+ "description": "人民币信贷收支指标",
60859
+ "operationId": "list_macro_rmb_credit",
60860
+ "requestBody": {
60861
+ "description": "人民币信贷收支指标",
60862
+ "content": {
60863
+ "application/json": {
60864
+ "schema": {
60865
+ "type": "object",
60866
+ "properties": {
60867
+ "indCodes": {
60868
+ "type": "array",
60869
+ "allOf": [
60870
+ {
60871
+ "type": "array",
60872
+ "description": "191000657代表各项存款,701013601代表境内存款,191000654代表住户存款,701013594代表住户活期存款,701013595代表住户定期及其他存款,191000664代表非金融企业存款,701013597代表非金融企业活期存款,701013598代表非金融企业定期及其他存款,701013600代表机关团体存款,191000652代表财政性存款,701013603代表非银行业金融机构存款,701013602代表境外存款,191000668代表金融债券,191000669代表流通中货币,191000665代表对国际金融机构负债,110138331代表其他资金来源,110138333代表资金来源总计,191000660代表各项贷款,110232974代表境内贷款,110233159代表住户贷款,701013616代表住户短期贷款,110255549代表住户短期消费贷款,110255550代表住户短期经营贷款,701013617代表住户中长期贷款,110233153代表住户中长期消费贷款,110255552代表住户中长期经营贷款,110233154代表企(事)业单位贷款,110233148代表企(事)业单位短期贷款,110233152代表企(事)业单位中长期贷款,110255554代表企(事)业单位票据融资,701013622代表企(事)业单位融资租赁,701013623代表企(事)业单位各项垫款,701013624代表非银行业金融机构贷款,110255557代表境外贷款,110111032代表债券投资,110242346代表股权及其他投资,191000667代表黄金占款,191000677代表中央银行外汇占款,191000672代表在国际金融机构资产,110138330代表资金运用总计",
60873
+ "enum": [
60874
+ "191000657"
60875
+ ],
60876
+ "items": {
60877
+ "type": "string"
60878
+ }
60879
+ }
60880
+ ],
60881
+ "description": "指标代码列表;为空时返回本接口全部指标",
60882
+ "example": [
60883
+ 191000657,
60884
+ 191000660
60885
+ ],
60886
+ "items": {
60887
+ "type": "string"
60888
+ }
60889
+ },
60890
+ "beginDate": {
60891
+ "type": "string",
60892
+ "description": "截止日期起始值,格式yyyy-MM-dd",
60893
+ "example": "2023-01-31"
60894
+ },
60895
+ "endDate": {
60896
+ "type": "string",
60897
+ "description": "截止日期结束值,格式yyyy-MM-dd",
60898
+ "example": "2023-09-30"
60899
+ },
60900
+ "pageNum": {
60901
+ "type": "integer",
60902
+ "format": "int32",
60903
+ "description": "页码。\n最小值:1;",
60904
+ "example": 1
60905
+ },
60906
+ "pageSize": {
60907
+ "type": "integer",
60908
+ "format": "int32",
60909
+ "description": "页长。\n最小值:1;\n最大值:500;",
60910
+ "example": 10
60911
+ }
60912
+ }
60913
+ }
60914
+ }
60915
+ },
60916
+ "required": true
60917
+ },
60918
+ "responses": {
60919
+ "200": {
60920
+ "description": "成功响应",
60921
+ "content": {
60922
+ "application/json": {
60923
+ "schema": {
60924
+ "type": "object",
60925
+ "properties": {
60926
+ "indName": {
60927
+ "type": "string",
60928
+ "description": "指标中文名称",
60929
+ "example": "各项存款"
60930
+ },
60931
+ "pubDt": {
60932
+ "type": "string",
60933
+ "description": "信息发布日期",
60934
+ "example": "2023-10-18 00:00:00"
60935
+ },
60936
+ "indCode": {
60937
+ "type": "integer",
60938
+ "format": "int32",
60939
+ "description": "指标代码",
60940
+ "example": 191000657
60941
+ },
60942
+ "endDt": {
60943
+ "type": "string",
60944
+ "description": "截止日期",
60945
+ "example": "2023-09-30 00:00:00"
60946
+ },
60947
+ "dataVal": {
60948
+ "type": "number",
60949
+ "description": "指标数据",
60950
+ "example": 2890000
60951
+ },
60952
+ "pageNum": {
60953
+ "type": "integer",
60954
+ "format": "int32",
60955
+ "description": "page number",
60956
+ "example": 1
60957
+ },
60958
+ "pageSize": {
60959
+ "type": "integer",
60960
+ "format": "int32",
60961
+ "description": "page size",
60962
+ "example": 100
60963
+ },
60964
+ "totalCount": {
60965
+ "type": "integer",
60966
+ "format": "int32",
60967
+ "description": "total count",
60968
+ "example": 0
60969
+ }
60970
+ }
60971
+ }
60972
+ }
60973
+ }
60974
+ },
60975
+ "400": {
60976
+ "description": "无效请求"
60977
+ },
60978
+ "500": {
60979
+ "description": "服务器内部错误"
60980
+ }
60981
+ },
60982
+ "security": [
60983
+ {
60984
+ "ApiKeyAuth": []
60985
+ }
60986
+ ]
60987
+ },
60988
+ "x-apikey-supported": [
60989
+ "resource"
60990
+ ]
57916
60991
  }
57917
60992
  },
57918
60993
  "components": {