| 参数名称 | 类型 | 必填 | 说明 |
|---|---|---|---|
| company | string | 是 | 公司名称(company,creditno,regno,orgno四选一) |
| creditno | string | 是 | 统一信用代码 |
| regno | string | 是 | 注册号 |
| orgno | string | 是 | 组织机构代码 |
| page | string | 是 | 页码 |
| pagesize | string | 是 | 每页数量,默认10,最大20 |
| 参数名称 | 类型 | 说明 |
|---|---|---|
| name | string | 竞品名称 |
| company | string | 企业名称 |
| brief | string | 竞品简介 |
| logo | string | 竞品logo |
| rank | int | 竞品企业pr |
| total | int | 总数 |
| page | int | 页码 |
| pagesize | int | 每页数量 |
$url = "https://api.jisuapi.com/enterpriseoperation/competitor?company=深圳市腾讯计算机系统有限公司&creditno=®no=&orgno=&page=1&pagesize=10&appkey=yourappkey";
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
$result = curl_exec($ch);
curl_close($ch);
$data = json_decode($result, true);
print_r($data);
String url = "https://api.jisuapi.com/enterpriseoperation/competitor?company=深圳市腾讯计算机系统有限公司&creditno=®no=&orgno=&page=1&pagesize=10&appkey=yourappkey";
URL obj = new URL(url);
HttpURLConnection con = (HttpURLConnection) obj.openConnection();
con.setRequestMethod("GET");
BufferedReader in = new BufferedReader(new InputStreamReader(con.getInputStream()));
String inputLine;
StringBuffer response = new StringBuffer();
while ((inputLine = in.readLine()) != null) {
response.append(inputLine);
}
in.close();
System.out.println(response.toString());
import requests
url = "https://api.jisuapi.com/enterpriseoperation/competitor?company=深圳市腾讯计算机系统有限公司&creditno=®no=&orgno=&page=1&pagesize=10&appkey=yourappkey"
response = requests.get(url)
print(response.json())
const https = require('https');
const url = "https://api.jisuapi.com/enterpriseoperation/competitor?company=深圳市腾讯计算机系统有限公司&creditno=®no=&orgno=&page=1&pagesize=10&appkey=yourappkey";
https.get(url, (res) => {
let data = '';
res.on('data', (chunk) => { data += chunk; });
res.on('end', () => { console.log(JSON.parse(data)); });
}).on('error', (err) => { console.error('Error:', err); });
{
"status": 0,
"msg": "ok",
"result": {
"competitor": [
{
"name": "腾讯直播",
"company": "深圳市腾讯计算机系统有限公司",
"brief": "“腾讯直播”定位为腾讯视频旗下的一款手机直播平台产品,以泛娱乐为主,以明星和粉丝内容为核心,关注明星和达人养成的直播内容,近期举办了papi酱拍卖会直播、《欢乐颂》发布会直播等活动。",
"logo": "https://pic.u51.com/sfs-gateway/api/v1/download/29327d1a689b44ada7449855224f3346c644",
"rank": 213388005
},
{
"name": "亲拍",
"company": "阿里巴巴(中国)网络技术有限公司",
"brief": "亲拍App是阿里官方面向淘系商家,推出的短视频拍摄剪辑工具,集合了商家经营全链路短视频运营所需功能,主要为商家提供电商公私域短视频生产一站式服务。",
"logo": "https://pic.u51.com/sfs-gateway/api/v1/download/e54b84b6b62645559d51660df912439b8b38",
"rank": 152996386
}
],
"total": 7565,
"page": 1,
"pagesize": 10
}
}
| 参数名称 | 类型 | 必填 | 说明 |
|---|---|---|---|
| company | string | 是 | 公司名称(company,creditno,regno,orgno四选一) |
| creditno | string | 是 | 统一信用代码 |
| regno | string | 是 | 注册号 |
| orgno | string | 是 | 组织机构代码 |
| page | string | 是 | 页码 |
| pagesize | string | 是 | 每页数量,默认10,最大20 |
| 参数名称 | 类型 | 说明 |
|---|---|---|
| licenseno | string | 许可文件编号 |
| name | string | 许可文件名称 |
| content | string | 许可内容 |
| authority | string | 许可机关 |
| validfrom | string | 有效期自 |
| validto | string | 有效期至 |
| total | int | 总数 |
| page | int | 页码 |
| pagesize | int | 每页数量 |
$url = "https://api.jisuapi.com/enterpriseoperation/adminlicense?company=深圳市腾讯计算机系统有限公司&creditno=®no=&orgno=&page=1&pagesize=10&appkey=yourappkey";
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
$result = curl_exec($ch);
curl_close($ch);
$data = json_decode($result, true);
print_r($data);
String url = "https://api.jisuapi.com/enterpriseoperation/adminlicense?company=深圳市腾讯计算机系统有限公司&creditno=®no=&orgno=&page=1&pagesize=10&appkey=yourappkey";
URL obj = new URL(url);
HttpURLConnection con = (HttpURLConnection) obj.openConnection();
con.setRequestMethod("GET");
BufferedReader in = new BufferedReader(new InputStreamReader(con.getInputStream()));
String inputLine;
StringBuffer response = new StringBuffer();
while ((inputLine = in.readLine()) != null) {
response.append(inputLine);
}
in.close();
System.out.println(response.toString());
import requests
url = "https://api.jisuapi.com/enterpriseoperation/adminlicense?company=深圳市腾讯计算机系统有限公司&creditno=®no=&orgno=&page=1&pagesize=10&appkey=yourappkey"
response = requests.get(url)
print(response.json())
const https = require('https');
const url = "https://api.jisuapi.com/enterpriseoperation/adminlicense?company=深圳市腾讯计算机系统有限公司&creditno=®no=&orgno=&page=1&pagesize=10&appkey=yourappkey";
https.get(url, (res) => {
let data = '';
res.on('data', (chunk) => { data += chunk; });
res.on('end', () => { console.log(JSON.parse(data)); });
}).on('error', (err) => { console.error('Error:', err); });
{
"status": 0,
"msg": "ok",
"result": {
"license": [
{
"licenseno": "YB24403051251706",
"name": "仅销售预包装食品首次备案",
"content": "申请单位名称:深圳市腾讯计算机系统有限公司,统一社会信用代码:91440300708461136T,住所:广东省深圳市南山区粤海街道麻岭社区科技中一路腾讯大厦35层,备案人姓名:钟一鸣,备案人联系电话:1392****2841,法定代表人(负责人)姓名:马化腾,联系电话:1812****6964,证件类型:中华人民共和国居民身份证,证件号码:4403****9291,联系人姓名:钟一鸣,联系人联系电话:1392****2841,经营场所:广东省深圳市南山区粤海街道麻岭社区科技中一路腾讯大厦35层3502,食品经营场所面积:200㎡以下,外设仓库:无,销售方式:零售,业态类型代码:2,主体业态:食品销售经营者(网络食品销售商,网络经营),自动售货设备数量:null,网络经营:是,连锁经营:否,总部名称:null,总部统一社会信用代码:null,总部地址:null,总部联系方式:null,经营种类:不含冷藏冷冻食品;不含特殊食品",
"authority": "深圳市市场监督管理局南山监管局",
"validfrom": "2025-02-05",
"validto": "2099-12-31"
},
{
"licenseno": "440300120429",
"name": "营业性演出许可证",
"content": "演出经纪机构从事营业性演出经营活动审批",
"authority": "深圳市文化广电旅游体育局",
"validfrom": "2024-12-17",
"validto": "2026-12-16"
}
],
"total": 38,
"page": 1,
"pagesize": 10
}
}
| 参数名称 | 类型 | 必填 | 说明 |
|---|---|---|---|
| company | string | 是 | 公司名称(company,creditno,regno,orgno四选一) |
| creditno | string | 是 | 统一信用代码 |
| regno | string | 是 | 注册号 |
| orgno | string | 是 | 组织机构代码 |
| 参数名称 | 类型 | 说明 |
|---|---|---|
| round | string | 融资轮次 |
| amount | string | 融资金额 |
| currency | string | 货币单位 |
| date | string | 融资日期 |
| investor | string | 投资人 |
| valuation | string | 估值 |
| share | string | 股份比例 |
| newstitle | string | 新闻标题 |
| newsurl | string | 新闻链接 |
$url = "https://api.jisuapi.com/enterpriseoperation/financing?company=深圳市腾讯计算机系统有限公司&creditno=®no=&orgno=&appkey=yourappkey";
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
$result = curl_exec($ch);
curl_close($ch);
$data = json_decode($result, true);
print_r($data);
String url = "https://api.jisuapi.com/enterpriseoperation/financing?company=深圳市腾讯计算机系统有限公司&creditno=®no=&orgno=&appkey=yourappkey";
URL obj = new URL(url);
HttpURLConnection con = (HttpURLConnection) obj.openConnection();
con.setRequestMethod("GET");
BufferedReader in = new BufferedReader(new InputStreamReader(con.getInputStream()));
String inputLine;
StringBuffer response = new StringBuffer();
while ((inputLine = in.readLine()) != null) {
response.append(inputLine);
}
in.close();
System.out.println(response.toString());
import requests
url = "https://api.jisuapi.com/enterpriseoperation/financing?company=深圳市腾讯计算机系统有限公司&creditno=®no=&orgno=&appkey=yourappkey"
response = requests.get(url)
print(response.json())
const https = require('https');
const url = "https://api.jisuapi.com/enterpriseoperation/financing?company=深圳市腾讯计算机系统有限公司&creditno=®no=&orgno=&appkey=yourappkey";
https.get(url, (res) => {
let data = '';
res.on('data', (chunk) => { data += chunk; });
res.on('end', () => { console.log(JSON.parse(data)); });
}).on('error', (err) => { console.error('Error:', err); });
{
"status": 0,
"msg": "ok",
"result": {
"financing": [
{
"round": "战略融资",
"amount": "2550万港元",
"currency": "港元",
"date": "2022-12-30",
"investor": "裕兴科技",
"valuation": "未披露",
"share": "",
"newstitle": "",
"newsurl": ""
},
{
"round": "其他",
"amount": "83.0亿美元",
"currency": "美元",
"date": "2021-02-19",
"investor": null,
"valuation": "未披露",
"share": "",
"newstitle": "腾讯获83亿美元离岸银团贷款 12家银行参与",
"newsurl": "http://www.morningwhistle.com/info/8aed89911c276c0e57fa14f76453e69e.html"
}
]
}
}
| 参数名称 | 类型 | 必填 | 说明 |
|---|---|---|---|
| company | string | 是 | 公司名称(company,creditno,regno,orgno四选一) |
| creditno | string | 是 | 统一信用代码 |
| regno | string | 是 | 注册号 |
| orgno | string | 是 | 组织机构代码 |
| priority | string | 是 | 0,1重要 2其他 0,1是一个字符串,默认0,1,2 |
| pagestart | string | 是 | 第一页不传 接口会返回pageStart 拿返回值里面的 分页 |
| 参数名称 | 类型 | 说明 |
|---|---|---|
| type | string | 类型 |
| classify | string | 分类 |
| content | string | 内容 |
| url | string | 链接 |
| pubtime | string | 发布时间 |
| priority | int | 重要程度 |
| name | string | 公司全称 |
| title | string | 标题 |
| subtitle | string | 副标题 |
| logo | string | logo |
| pagestart | string | 分页信息 |
$url = "https://api.jisuapi.com/enterpriseoperation/intel?company=深圳市腾讯计算机系统有限公司&creditno=®no=&orgno=&priority=&pagestart=&appkey=yourappkey";
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
$result = curl_exec($ch);
curl_close($ch);
$data = json_decode($result, true);
print_r($data);
String url = "https://api.jisuapi.com/enterpriseoperation/intel?company=深圳市腾讯计算机系统有限公司&creditno=®no=&orgno=&priority=&pagestart=&appkey=yourappkey";
URL obj = new URL(url);
HttpURLConnection con = (HttpURLConnection) obj.openConnection();
con.setRequestMethod("GET");
BufferedReader in = new BufferedReader(new InputStreamReader(con.getInputStream()));
String inputLine;
StringBuffer response = new StringBuffer();
while ((inputLine = in.readLine()) != null) {
response.append(inputLine);
}
in.close();
System.out.println(response.toString());
import requests
url = "https://api.jisuapi.com/enterpriseoperation/intel?company=深圳市腾讯计算机系统有限公司&creditno=®no=&orgno=&priority=&pagestart=&appkey=yourappkey"
response = requests.get(url)
print(response.json())
const https = require('https');
const url = "https://api.jisuapi.com/enterpriseoperation/intel?company=深圳市腾讯计算机系统有限公司&creditno=®no=&orgno=&priority=&pagestart=&appkey=yourappkey";
https.get(url, (res) => {
let data = '';
res.on('data', (chunk) => { data += chunk; });
res.on('end', () => { console.log(JSON.parse(data)); });
}).on('error', (err) => { console.error('Error:', err); });
{
"status": 0,
"msg": "ok",
"result": {
"intel": [
{
"type": "开庭公告",
"classify": "开庭公告",
"content": "因名誉权纠纷被「在线途游(北京)科技有限公司」起诉,开庭时间:2026-07-06 09:30:00",
"url": "https://web.xiaolanben.com/bluebook-risk/court-detail.html?id=e_3a21de7f799e40ddf53a45eb8fc4fcbc",
"pubtime": "2026-06-29 00:00:00",
"priority": 2,
"entities": [
{
"name": "在线途游(北京)科技有限公司",
"title": "途游游戏",
"subtitle": "在线途游(北京)科技有限公司",
"logo": "https://pic.u51.com/sfs-gateway/api/v1/download/4cf399527faf4154b779fad1de078b5ab0f9"
},
{
"name": "深圳市腾讯计算机系统有限公司",
"title": "腾讯控股",
"subtitle": "深圳市腾讯计算机系统有限公司",
"logo": "https://pic.u51.com/sfs-gateway/api/v1/download/9f03ad5d7d03476ca17ac59e507379f1f9f2"
}
]
},
{
"type": "业务情报-App",
"classify": "业务情报-App",
"content": "2026-06-28,旗下「AppsSupporter」app在AppStore上线",
"url": "",
"pubtime": "2026-06-28 00:00:00",
"priority": 0,
"entities": [
{
"name": "深圳市腾讯计算机系统有限公司",
"title": "腾讯控股",
"subtitle": "深圳市腾讯计算机系统有限公司",
"logo": "https://pic.u51.com/sfs-gateway/api/v1/download/9f03ad5d7d03476ca17ac59e507379f1f9f2"
},
{
"name": "",
"title": "AppsSupporter",
"subtitle": "",
"logo": "https://pic.u51.com/sfs-gateway/api/v1/download/75c34f8db40a452fa4dc948997d6fe5162ff"
}
]
}
],
"pagestart": "1.781582401E9,128349a72325c9b6943c25296c85e2c6"
}
}
| 参数名称 | 类型 | 必填 | 说明 |
|---|---|---|---|
| company | string | 是 | 公司名称(company,creditno,regno,orgno四选一) |
| creditno | string | 是 | 统一信用代码 |
| regno | string | 是 | 注册号 |
| orgno | string | 是 | 组织机构代码 |
| page | string | 是 | 页码 |
| pagesize | string | 是 | 每页数量,默认10,最大20 |
| 参数名称 | 类型 | 说明 |
|---|---|---|
| year | string | 年报年度 |
| date | string | 示例: 2026-06-24 |
| status | string | 经营状态 |
| address | string | 通信地址 |
| tel | string | 联系电话 |
| string | 电子邮箱 | |
| employees | string | 从业人数 |
| totalassets | string | 资产总额 |
| totalliabilities | string | 负债总额 |
| totalequity | string | 所有者权益合计 |
| revenue | string | 营业总收入 |
| mainrevenue | string | 主营业务收入 |
| profit | string | 利润总额 |
| netprofit | string | 净利润 |
| tax | string | 纳税总额 |
| name | string | 股东名称 |
| subscribed | float | 累计认缴额 |
| paidin | float | 累计实缴额 |
| subscribedform | string | 认缴出资方式 |
| paidinform | string | 实缴出资方式 |
| subscribeddate | string | 认缴出资日期 |
| paidindate | string | 实缴出资日期 |
| investments | array | 投资数据 |
| url | string | 链接 |
| type | string | 年报类型 |
| websites | array | 网站数据 |
| shareholders | array | 股东数据 |
| total | int | 总数 |
| page | int | 页码 |
| pagesize | int | 每页数量 |
$url = "https://api.jisuapi.com/enterpriseoperation/annualreportlist?company=深圳市腾讯计算机系统有限公司&creditno=®no=&orgno=&page=1&pagesize=10&appkey=yourappkey";
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
$result = curl_exec($ch);
curl_close($ch);
$data = json_decode($result, true);
print_r($data);
String url = "https://api.jisuapi.com/enterpriseoperation/annualreportlist?company=深圳市腾讯计算机系统有限公司&creditno=®no=&orgno=&page=1&pagesize=10&appkey=yourappkey";
URL obj = new URL(url);
HttpURLConnection con = (HttpURLConnection) obj.openConnection();
con.setRequestMethod("GET");
BufferedReader in = new BufferedReader(new InputStreamReader(con.getInputStream()));
String inputLine;
StringBuffer response = new StringBuffer();
while ((inputLine = in.readLine()) != null) {
response.append(inputLine);
}
in.close();
System.out.println(response.toString());
import requests
url = "https://api.jisuapi.com/enterpriseoperation/annualreportlist?company=深圳市腾讯计算机系统有限公司&creditno=®no=&orgno=&page=1&pagesize=10&appkey=yourappkey"
response = requests.get(url)
print(response.json())
const https = require('https');
const url = "https://api.jisuapi.com/enterpriseoperation/annualreportlist?company=深圳市腾讯计算机系统有限公司&creditno=®no=&orgno=&page=1&pagesize=10&appkey=yourappkey";
https.get(url, (res) => {
let data = '';
res.on('data', (chunk) => { data += chunk; });
res.on('end', () => { console.log(JSON.parse(data)); });
}).on('error', (err) => { console.error('Error:', err); });
{
"status": 0,
"msg": "ok",
"result": {
"report": [
{
"year": "2025",
"date": "2026-06-24",
"status": "开业",
"address": "深圳市南山区粤海街道麻岭社区科技中一路腾讯大厦35层",
"tel": "86013388",
"email": "ADPM@tencent.com",
"employees": "",
"totalassets": "",
"totalliabilities": "",
"totalequity": "",
"revenue": "",
"mainrevenue": "",
"profit": "",
"netprofit": "",
"tax": "",
"shareholders": [
{
"name": "张志东",
"subscribed": 1485.71,
"paidin": 1485.71,
"subscribedform": "货币",
"paidinform": "",
"subscribeddate": "1998-11-11",
"paidindate": "2014-11-11"
},
{
"name": "马化腾",
"subscribed": 3528.57,
"paidin": 3528.57,
"subscribedform": "货币",
"paidinform": "",
"subscribeddate": "1998-11-11",
"paidindate": "2014-11-11"
}
],
"investments": [],
"websites": [
{
"name": "腾讯网",
"url": "https://www.qq.com/",
"type": "1"
}
]
},
{
"year": "2024",
"date": "2025-06-27",
"status": "开业",
"address": "深圳市南山区粤海街道麻岭社区科技中一路腾讯大厦35层",
"tel": "86013388",
"email": "ADPM@tencent.com",
"employees": "",
"totalassets": "",
"totalliabilities": "",
"totalequity": "",
"revenue": "",
"mainrevenue": "",
"profit": "",
"netprofit": "",
"tax": "",
"shareholders": [
{
"name": "张志东",
"subscribed": 1485.7115,
"paidin": 1485.7115,
"subscribedform": "货币",
"paidinform": "",
"subscribeddate": "1998-11-11",
"paidindate": "2014-11-11"
},
{
"name": "马化腾",
"subscribed": 3528.5705,
"paidin": 3528.5705,
"subscribedform": "货币",
"paidinform": "",
"subscribeddate": "1998-11-11",
"paidindate": "2014-11-11"
}
],
"investments": [],
"websites": [
{
"name": "腾讯网",
"url": "https://www.qq.com/",
"type": "1"
}
]
}
],
"total": 7,
"page": 1,
"pagesize": 10
}
}
| 参数名称 | 类型 | 必填 | 说明 |
|---|---|---|---|
| company | string | 是 | 公司名称(company,creditno,regno,orgno四选一) |
| creditno | string | 是 | 统一信用代码 |
| regno | string | 是 | 注册号 |
| orgno | string | 是 | 组织机构代码 |
| year | string | 是 | 年份 |
| 参数名称 | 类型 | 说明 |
|---|---|---|
| year | string | 年报年度 |
| type | string | 年报类型 |
| name | string | 企业名称 |
| enttype | string | 企业类型 |
| creditno | string | 统一社会信用代码 |
| regno | string | 注册号 |
| status | string | 经营状态 |
| reportdate | string | 年报日期 |
| address | string | 通信地址 |
| postalcode | string | 邮政编码 |
| tel | string | 联系电话 |
| string | 电子邮箱 | |
| employees | string | 从业人数 |
| womenemployees | string | 女性从业人员 |
| totalassets | string | 资产总额 |
| totalliabilities | string | 负债总额 |
| totalequity | string | 所有者权益合计 |
| revenue | string | 营业总收入 |
| mainrevenue | string | 主营业务收入 |
| profit | string | 利润总额 |
| netprofit | string | 净利润 |
| tax | string | 纳税总额 |
| mainbusiness | string | 主营业务活动 |
| subscribed | string | 累计认缴额 |
| paidin | string | 累计实缴额 |
| subscribedform | string | 认缴出资方式 |
| paidinform | string | 实缴出资方式 |
| subscribeddate | string | 认缴出资日期 |
| paidindate | string | 实缴出资日期 |
| investments | int | 投资信息 |
| url | string | 网址 |
| changes | int | 变更信息 |
| pension | string | 城镇职工基本养老保险参保人数 |
| unemployment | string | 失业保险参保人数 |
| medical | string | 职工基本医疗保险参保人数 |
| injury | string | 工伤保险参保人数 |
| maternity | string | 生育保险参保人数 |
$url = "https://api.jisuapi.com/enterpriseoperation/annualreportbyyear?company=深圳市腾讯计算机系统有限公司&creditno=®no=&orgno=&year=2025&appkey=yourappkey";
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
$result = curl_exec($ch);
curl_close($ch);
$data = json_decode($result, true);
print_r($data);
String url = "https://api.jisuapi.com/enterpriseoperation/annualreportbyyear?company=深圳市腾讯计算机系统有限公司&creditno=®no=&orgno=&year=2025&appkey=yourappkey";
URL obj = new URL(url);
HttpURLConnection con = (HttpURLConnection) obj.openConnection();
con.setRequestMethod("GET");
BufferedReader in = new BufferedReader(new InputStreamReader(con.getInputStream()));
String inputLine;
StringBuffer response = new StringBuffer();
while ((inputLine = in.readLine()) != null) {
response.append(inputLine);
}
in.close();
System.out.println(response.toString());
import requests
url = "https://api.jisuapi.com/enterpriseoperation/annualreportbyyear?company=深圳市腾讯计算机系统有限公司&creditno=®no=&orgno=&year=2025&appkey=yourappkey"
response = requests.get(url)
print(response.json())
const https = require('https');
const url = "https://api.jisuapi.com/enterpriseoperation/annualreportbyyear?company=深圳市腾讯计算机系统有限公司&creditno=®no=&orgno=&year=2025&appkey=yourappkey";
https.get(url, (res) => {
let data = '';
res.on('data', (chunk) => { data += chunk; });
res.on('end', () => { console.log(JSON.parse(data)); });
}).on('error', (err) => { console.error('Error:', err); });
{
"status": 0,
"msg": "ok",
"result": {
"year": "2025",
"type": null,
"name": "深圳市腾讯计算机系统有限公司",
"enttype": "",
"creditno": "",
"regno": "",
"status": "开业",
"reportdate": null,
"address": "深圳市南山区粤海街道麻岭社区科技中一路腾讯大厦35层",
"postalcode": null,
"tel": "86013388",
"email": "ADPM@tencent.com",
"employees": "",
"womenemployees": null,
"totalassets": "",
"totalliabilities": "",
"totalequity": "",
"revenue": "",
"mainrevenue": "",
"profit": "",
"netprofit": "",
"tax": "",
"mainbusiness": null,
"shareholders": [
{
"name": "张志东",
"subscribed": "1485.71",
"paidin": "1485.71",
"subscribedform": "货币",
"paidinform": "",
"subscribeddate": "1998-11-11",
"paidindate": "2014-11-11"
},
{
"name": "许晨晔",
"subscribed": "742.86",
"paidin": "742.86",
"subscribedform": "货币",
"paidinform": "",
"subscribeddate": "1998-11-11",
"paidindate": "2014-11-11"
}
],
"investments": [],
"websites": [
{
"name": "腾讯网",
"url": "https://www.qq.com/",
"type": "1"
}
],
"changes": [],
"socialsecurity": {
"pension": null,
"unemployment": null,
"medical": null,
"injury": null,
"maternity": null
}
}
}
| 代号 | 说明 |
|---|---|
| 201 | 公司名称、信用代码和注册号都为空 |
| 210 | 没有信息 |
| 代号 | 说明 |
|---|---|
| 101 | APPKEY为空或不存在 |
| 102 | APPKEY已过期 |
| 103 | APPKEY无请求此数据权限 |
| 104 | 请求超过次数限制 |
| 105 | IP被禁止 |
| 106 | IP请求超过限制 |
| 107 | 接口维护中 |
| 108 | 接口已停用 |
| 计次套餐 | 套餐规格 | 价格 | ||
|---|---|---|---|---|
| 免费套餐 | 5次 | 0.00 元 | ≈0元/次 | |
| Level1 | 5000次 | 300.00 元 | ≈0.06元/次 | |
| Level2 | 10000次 | 500.00 元 | ≈0.05元/次 | |
| Level3 | 20000次 | 1000.00 元 | ≈0.05元/次 | |
| Level4 | 50000次 | 2400.00 元 | ≈0.048元/次 | |


© 2015-2025 杭州极速互联科技有限公司 版权所有 浙ICP备17047587号-4 浙公网安备33010502005096 增值电信业务经营许可证:浙B2-20190875
