@investoday/investoday-api 1.9.13 → 1.9.14
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 +0 -158
- package/data/tree.json +308 -14
- package/package.json +1 -1
package/data/openapi.json
CHANGED
|
@@ -53277,164 +53277,6 @@
|
|
|
53277
53277
|
}
|
|
53278
53278
|
]
|
|
53279
53279
|
},
|
|
53280
|
-
"post": {
|
|
53281
|
-
"tags": [
|
|
53282
|
-
"全市场股票列表"
|
|
53283
|
-
],
|
|
53284
|
-
"summary": "全市场股票列表",
|
|
53285
|
-
"description": "获取全市场A股和B股股票的基本信息列表,包含股票代码、名称、所属交易所、上市板块、上市状态、上市日期、退市日期、股票类型、公司内部ID及公司成长阶段等核心数据,支持分页查询,适用于需要批量获取股票基础信息进行筛选、分析或构建股票池的场景。",
|
|
53286
|
-
"operationId": "list_stock_all",
|
|
53287
|
-
"requestBody": {
|
|
53288
|
-
"description": "获取全市场A股和B股股票的基本信息列表,包含股票代码、名称、所属交易所、上市板块、上市状态、上市日期、退市日期、股票类型、公司内部ID及公司成长阶段等核心数据,支持分页查询,适用于需要批量获取股票基础信息进行筛选、分析或构建股票池的场景。",
|
|
53289
|
-
"content": {
|
|
53290
|
-
"application/json": {
|
|
53291
|
-
"schema": {
|
|
53292
|
-
"type": "object",
|
|
53293
|
-
"properties": {
|
|
53294
|
-
"pageNum": {
|
|
53295
|
-
"type": "integer",
|
|
53296
|
-
"format": "int32",
|
|
53297
|
-
"description": "页码。\n最小值:1;",
|
|
53298
|
-
"example": 1
|
|
53299
|
-
},
|
|
53300
|
-
"pageSize": {
|
|
53301
|
-
"type": "integer",
|
|
53302
|
-
"format": "int32",
|
|
53303
|
-
"description": "页长。\n最小值:1;\n最大值:500;",
|
|
53304
|
-
"example": 10
|
|
53305
|
-
}
|
|
53306
|
-
}
|
|
53307
|
-
}
|
|
53308
|
-
}
|
|
53309
|
-
},
|
|
53310
|
-
"required": true
|
|
53311
|
-
},
|
|
53312
|
-
"responses": {
|
|
53313
|
-
"200": {
|
|
53314
|
-
"description": "成功响应",
|
|
53315
|
-
"content": {
|
|
53316
|
-
"application/json": {
|
|
53317
|
-
"schema": {
|
|
53318
|
-
"type": "object",
|
|
53319
|
-
"properties": {
|
|
53320
|
-
"stockCode": {
|
|
53321
|
-
"type": "string",
|
|
53322
|
-
"description": "股票代码",
|
|
53323
|
-
"example": "601881"
|
|
53324
|
-
},
|
|
53325
|
-
"exchangeCode": {
|
|
53326
|
-
"type": "string",
|
|
53327
|
-
"allOf": [
|
|
53328
|
-
{
|
|
53329
|
-
"type": "string",
|
|
53330
|
-
"description": "SH代表上海;\nSZ代表深圳;\nBJ代表北京",
|
|
53331
|
-
"enum": [
|
|
53332
|
-
"SH",
|
|
53333
|
-
"SZ",
|
|
53334
|
-
"BJ"
|
|
53335
|
-
]
|
|
53336
|
-
}
|
|
53337
|
-
],
|
|
53338
|
-
"description": "市场类型",
|
|
53339
|
-
"example": "SH"
|
|
53340
|
-
},
|
|
53341
|
-
"boardName": {
|
|
53342
|
-
"type": "string",
|
|
53343
|
-
"description": "上市板块",
|
|
53344
|
-
"example": "主板"
|
|
53345
|
-
},
|
|
53346
|
-
"stockName": {
|
|
53347
|
-
"type": "string",
|
|
53348
|
-
"description": "股票名称",
|
|
53349
|
-
"example": "中国银河"
|
|
53350
|
-
},
|
|
53351
|
-
"stockFullName": {
|
|
53352
|
-
"type": "string",
|
|
53353
|
-
"description": "证券全称",
|
|
53354
|
-
"example": "中国银河证券股份有限公司"
|
|
53355
|
-
},
|
|
53356
|
-
"listStatus": {
|
|
53357
|
-
"type": "integer",
|
|
53358
|
-
"format": "int32",
|
|
53359
|
-
"allOf": [
|
|
53360
|
-
{
|
|
53361
|
-
"type": "integer",
|
|
53362
|
-
"format": "int32",
|
|
53363
|
-
"description": "0代表发行待流通;\n1代表首次流通;\n2代表转换后流通;\n3代表暂停后恢复流通;\n4代表暂停流通;\n5代表终止流通(包括到期或被转换的自然终止情况);\n6代表特别处理;\n7代表撤销特别处理;\n8代表退市整理期;\n9代表其他",
|
|
53364
|
-
"enum": [
|
|
53365
|
-
0,
|
|
53366
|
-
1,
|
|
53367
|
-
2,
|
|
53368
|
-
3,
|
|
53369
|
-
4,
|
|
53370
|
-
5,
|
|
53371
|
-
6,
|
|
53372
|
-
7,
|
|
53373
|
-
8,
|
|
53374
|
-
9
|
|
53375
|
-
]
|
|
53376
|
-
}
|
|
53377
|
-
],
|
|
53378
|
-
"description": "上市状态",
|
|
53379
|
-
"example": 1
|
|
53380
|
-
},
|
|
53381
|
-
"listDate": {
|
|
53382
|
-
"type": "string",
|
|
53383
|
-
"description": "上市日期",
|
|
53384
|
-
"example": "2017-01-23 00:00:00"
|
|
53385
|
-
},
|
|
53386
|
-
"delistDate": {
|
|
53387
|
-
"type": "string",
|
|
53388
|
-
"description": "摘牌日期",
|
|
53389
|
-
"example": "2023-08-15"
|
|
53390
|
-
},
|
|
53391
|
-
"stockType": {
|
|
53392
|
-
"type": "string",
|
|
53393
|
-
"description": "股票类别",
|
|
53394
|
-
"example": "A股"
|
|
53395
|
-
},
|
|
53396
|
-
"companyId": {
|
|
53397
|
-
"type": "string",
|
|
53398
|
-
"description": "机构内部ID",
|
|
53399
|
-
"example": "BS123458"
|
|
53400
|
-
},
|
|
53401
|
-
"companyGrowthStage": {
|
|
53402
|
-
"type": "integer",
|
|
53403
|
-
"format": "int32",
|
|
53404
|
-
"allOf": [
|
|
53405
|
-
{
|
|
53406
|
-
"type": "integer",
|
|
53407
|
-
"format": "int32",
|
|
53408
|
-
"description": "1代表初创期;\n2代表成长期;\n3代表成熟期;\n4代表衰退期/转型期",
|
|
53409
|
-
"enum": [
|
|
53410
|
-
1,
|
|
53411
|
-
2,
|
|
53412
|
-
3,
|
|
53413
|
-
4
|
|
53414
|
-
]
|
|
53415
|
-
}
|
|
53416
|
-
],
|
|
53417
|
-
"description": "公司成长阶段",
|
|
53418
|
-
"example": 1
|
|
53419
|
-
}
|
|
53420
|
-
}
|
|
53421
|
-
}
|
|
53422
|
-
}
|
|
53423
|
-
}
|
|
53424
|
-
},
|
|
53425
|
-
"400": {
|
|
53426
|
-
"description": "无效请求"
|
|
53427
|
-
},
|
|
53428
|
-
"500": {
|
|
53429
|
-
"description": "服务器内部错误"
|
|
53430
|
-
}
|
|
53431
|
-
},
|
|
53432
|
-
"security": [
|
|
53433
|
-
{
|
|
53434
|
-
"ApiKeyAuth": []
|
|
53435
|
-
}
|
|
53436
|
-
]
|
|
53437
|
-
},
|
|
53438
53280
|
"x-apikey-supported": [
|
|
53439
53281
|
"resource"
|
|
53440
53282
|
]
|