# 历史注册资本查询


# 接口描述

查询指定企业的历史注册资本,包括注册资本、变更时间等信息。

# 字符编码

UTF-8

# 请求地址

/openapi/enterprise/history_regist_capis

# 请求 Header 参数

参数名 类型 必填 说明
accessToken String 请求发起时需要在 header 中,携带 accessToken,获取方式详见获取 accessToken

# 版本号(ver)

1

# 请求方式

POST(application/json)

# 请求 Body 参数

参数名 类型 长度 必填 说明
ver Integer - 必填 api 接口版本,参见具体 API 的版本。示例:1
creditCode String 255 非必填 统一社会信用代码
companyName String 255 非必填 企业名称
pageNum Integer - 非必填 页数,默认1
pageSize Integer - 非必填 每页条数,默认20条,最多20条

# 请求 Body 示例

{
	"ver":1,
	"creditCode":"9111XXXXXXXXX",
	"companyName":"XXXX有限公司",
	"pageSize":10,
	"pageNum":1
}
1
2
3
4
5
6
7

# 应用级返回结果

参数名 类型 长度 必填 说明
data historyRegistCapis[] - 返回数据
totalCount Integer - 总条数
pageNum Integer - 页数
pageSize Integer - 每页条数
dataCnt Integer - 实际数据条数

# historyRegistCapis 属性值对象

参数名 类型 长度 必填 说明
id Integer 20 id
date String 64 变更时间
registCapi String 255 注册资本
registCapiNew Integer 40 注册资本数额
currencyUnit String 10 注册资本币种
source String 10 来源
isActual String 1 变更时间是否是实际变更时间
uTags Integer 3 隐藏标识

# 返回结果示例

{
  "msg": "成功",
  "code": 200,
  "data": {
    "list": [{
      "date": "",
      "isActual": "",
      "uTags": 0,
      "registCapi": "10000万元人民币",
      "registCapiNew": 10000.000000,
      "id": 10001,
      "source": "0210001",
      "localRowUpdateTime": "2022-12-17 06:33:04",
      "currencyUnit": "CNY"
    }],
    "pageSize": 10,
    "dataCnt": 1,
    "totalCount": 1,
    "pageNum": 1
  }
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21

返回code码见 API 返回码说明

上一次更新时间: 10/16/2025, 9:32:46 AM