# 企业基本信息查询


# 接口描述

实时查询企业基本信息详情,包含统一社会信用代码、企业名称、企业类型、注册资金、经营范围、成立日期等信息。

# 字符编码

UTF-8

# 请求地址

/openapi/enterprise/enterprise

# 请求 Header 参数

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

# 版本号(ver)

1

# 请求方式

POST(application/json)

# 请求 Body 参数

参数名 类型 长度 必填 说明
ver Integer - 必填 api 接口版本,参见具体 API 的版本。示例:1
creditCode String 255 非必填 统一社会信用代码 注: 企业名称为空时,统一社会信用代码必填
companyName String 255 非必填 企业名称 注: 统一社会信用代码为空时,企业名称必填

# 请求 Body 示例

{
	"ver":1,
	"creditCode":"91420000757013137P"
}
1
2
3
4

# 应用级返回结果

参数名 类型 长度 必填 说明
data enterprise[] - 返回数据

# enterprise 属性值对象

参数名 类型 长度 必填 说明
id String 64 id
regNo String 255 注册号
creditCode String 255 统一社会信用代码
orgNo String 255 组织机构代码
companyName String 255 企业名称
econKind String 255 企业类型
registCapi String 255 注册资本(原始)
actualCapi String 255 实收资金
scope String 经营范围
termStart String 255 经营期限起始日期
termEnd String 255 经营期限结束日期
checkDate String 255 核准日期
belongOrg String 255 登记机关
operName String 255 公司代表人
startDate String 255 成立日期
status String 50 状态
title String 255 公司代表人职务
logoUrl String 1000 公司logo
econType String 255 社会组织类型 详见econType字典表
provinceCode String 10 省份代码
cityCode String 10 市级代码
districtCode String 10 区域码
titleCode String 255 代表人职务代码 详见titleCode字典表
econKindCode String 255 企业类型代码 详见econKindCode字典表
currencyUnit String 10 币种 详见货币字典表
revokeReason String 吊销原因
revokeDate String 50 吊销日期
logoutReason String 注销原因
logoutDate String 50 注销日期
revokedCertificates String 100 吊销凭证
statusCode String 255 企业状态码 1:存续;2:注销;3:吊销;4:撤销,5:迁出,6:设立中,7:清算中,8:停业,9:其他
typeNew String 20 企业一级分类 01:大陆企业;02:社会组织;03:机关及事业单位;04:港澳台及国外企业;05:律所等其他组织机构;
categoryNew String 20 企业二级分类 详见企业二级分类字典表
enterpriseType Integer 1 企业类型(1:企业、2:个体工商户 3:其他)
contactNumber String 50 工商注册电话
contactEmail String 50 工商注册邮箱
address String 50 企业地址
industryName String 50 所属行业名称
industryCode String 50 所属行业code
registCapiNew decimal 40,6 注册资本

# 返回结果示例

{
  "code": 200,
  "msg": "成功",
  "data": {
	"regNo": "420000400000435",
	"orgNo": "757013137",
	"econKind": "有限责任公司(非自然人投资或控股的法人独资)",
	"registCapi": "1531800万元人民币",
	"registCapiNew": null,
	"actualCapi": "1504800.0000000000万元人民币",
	"scope": "各类建筑工程总承包、施工、咨询、建筑技术开发与转让、机械设备租赁、路桥建设,建筑工程、人防工程设计,商品混凝土的生产和批发;园林绿化工程;爆破作业设计施工(四级,有效期至2022年8月21日);建筑材料(设备)销售;机电设备销售;污水处理设备销售及环保设备销售。",
	"termStart": "2003-12-29",
	"termEnd": null,
	"checkDate": "2023-06-05",
	"belongOrg": "湖北省市场监督管理局",
	"operName": "陈卫国",
	"startDate": "2003-12-29",
	"status": "存续",
	"title": "法定代表人",
	"logoUrl": "https://www.cneptp.com/zhong-zi/oss-enterprise-logo/url/a1617bd5a8e726d0390b23c69a19b318.jpg",
	"econType": "",
	"currencyUnit": "CNY",
	"econKindCode": "1153",
	"revokeReason": "",
	"revokeDate": null,
	"logoutReason": null,
	"logoutDate": null,
	"enterpriseType": 1,
	"contactNumber": "027-65276668,027-87132688,65276668,87132688",
	"contactEmail": "84129389@qq.com,zhengtt@cscec.com,zjsj@cscec.com",
	"address": "武汉市关山路552号",
	"industryName": "土木工程建筑业",
	"industryCode": "E4800",
	"provinceCode": "420000",
	"cityCode": "420100",
	"districtCode": "420111",
	"id": "74b51b58c964889856dfa21ff384bdd2",
	"creditCode": "91420000757013137P",
	"companyName": "中建三局集团有限公司",
	"statusCode": "1"
  }
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42

返回code码见 API 返回码说明

上一次更新时间: 1/2/2025, 3:32:02 PM