| 参数名称 | 类型 | 必填 | 说明 |
|---|---|---|---|
| company | string | 是 | 公司名称(company,creditno,regno,orgno四选一) |
| creditno | string | 是 | 统一信用代码 |
| regno | string | 是 | 注册号 |
| orgno | string | 是 | 组织机构代码 |
| page | string | 是 | 页码 |
| pagesize | string | 是 | 每页数量,默认10,最大20 |
| 参数名称 | 类型 | 说明 |
|---|---|---|
| indate | string | 列入时间 |
| outdate | string | 移出日期 |
| ismoved | string | 是否列出 |
| inauthority | string | 列入决定机关 |
| outauthority | string | 列出决定机关 |
| inreason | string | 列入原因 |
| outreason | string | 移出经营异常名录原因 |
| total | int | 总数 |
| page | int | 页码 |
| pagesize | int | 每页数量 |
$url = "https://api.jisuapi.com/enterpriserisk/abnormal?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/enterpriserisk/abnormal?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/enterpriserisk/abnormal?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/enterpriserisk/abnormal?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": {
"abnormal": [
{
"indate": "2025-07-01",
"outdate": "",
"ismoved": "0",
"inauthority": "上海市奉贤区市场监督管理局",
"outauthority": "",
"inreason": "未依照《企业信息公示暂行条例》第八条规定的期限公示年度报告的",
"outreason": ""
},
{
"indate": "2025-02-13",
"outdate": "",
"ismoved": "0",
"inauthority": "上海市奉贤区市场监督管理局",
"outauthority": "",
"inreason": "通过登记的住所或者经营场所无法联系的",
"outreason": ""
}
],
"total": 4,
"page": 1,
"pagesize": 10
}
}
| 参数名称 | 类型 | 必填 | 说明 |
|---|---|---|---|
| company | string | 是 | 公司名称(company,creditno,regno,orgno四选一) |
| creditno | string | 是 | 统一信用代码 |
| regno | string | 是 | 注册号 |
| orgno | string | 是 | 组织机构代码 |
| page | string | 是 | 页码 |
| pagesize | string | 是 | 每页数量,默认10,最大20 |
| 参数名称 | 类型 | 说明 |
|---|---|---|
| caseno | string | 案号 |
| company | string | 企业名称 |
| court | string | 法院 |
| courtroom | string | 法庭 |
| hearingtime | string | 开庭时间 |
| judge | string | 法官 |
| plaintiff | string | 原告 |
| defendant | string | 被告 |
| casetype | string | 通告类型 |
| total | int | 总数 |
| page | int | 页码 |
| pagesize | int | 每页数量 |
$url = "https://api.jisuapi.com/enterpriserisk/courtsession?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/enterpriserisk/courtsession?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/enterpriserisk/courtsession?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/enterpriserisk/courtsession?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": {
"court": [
{
"caseno": "",
"company": "xxxx有限公司",
"court": "北京知识产权法院",
"courtroom": "定于二〇二六年七月七日 上午十时十分,在第一法庭",
"hearingtime": "2026-07-07 10:10:00",
"judge": "",
"plaintiff": "",
"defendant": "",
"casetype": "商标权无效宣告请求行政纠纷"
},
{
"caseno": "(xxxx)京xx行初xxxx号",
"company": "xxxx有限公司",
"court": "北京知识产权法院",
"courtroom": "第十五法庭",
"hearingtime": "2026-06-17 14:30:00",
"judge": "",
"plaintiff": "xxxx有限公司",
"defendant": "国家知识产权局",
"casetype": "商标行政纠纷"
}
],
"total": 483,
"page": 1,
"pagesize": 10
}
}
| 参数名称 | 类型 | 必填 | 说明 |
|---|---|---|---|
| company | string | 是 | 公司名称(company,creditno,regno,orgno四选一) |
| creditno | string | 是 | 统一信用代码 |
| regno | string | 是 | 注册号 |
| orgno | string | 是 | 组织机构代码 |
| 参数名称 | 类型 | 说明 |
|---|---|---|
| name | string | 公司名称 |
| risksummary | string | 风险总述 |
| paidincapital | string | 有无实缴 |
| annualreport | string | 有无年报 |
| offsiteoperation | string | 是否异地经营 |
| multicompanyaddress | string | 一址多企 |
| multicompanyphone | string | 一电多企 |
| multicompanyemail | string | 一邮多企 |
| crossappointment | string | 交叉任职 |
| socialsecurity | string | 人员社保情况 |
| recruitment | string | 是否有招聘信息 |
| bidding | string | 是否有招投标信息 |
| qualification | string | 是否有资质信息 |
| abnormaloperation | string | 是否异常经营 |
| seriousviolation | string | 是否严重违法 |
| riskcount | int | 风险数 |
| type | string | 类型 |
| risklevel | string | 级别 |
| riskinfo | string | 详情 |
$url = "https://api.jisuapi.com/enterpriserisk/shellcompany?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/enterpriserisk/shellcompany?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/enterpriserisk/shellcompany?company=杭州极速互联科技有限公司&creditno=®no=&orgno=&appkey=yourappkey"
response = requests.get(url)
print(response.json())
const https = require('https');
const url = "https://api.jisuapi.com/enterpriserisk/shellcompany?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": {
"name": "xxxx有限公司",
"risksummary": "该企业风险详情如下:",
"paidincapital": "提示",
"annualreport": "无",
"offsiteoperation": "无",
"multicompanyaddress": "无",
"multicompanyphone": "中",
"multicompanyemail": "高",
"crossappointment": "中",
"socialsecurity": "无",
"recruitment": "提示",
"bidding": "提示",
"qualification": "无",
"abnormaloperation": "无",
"seriousviolation": "无",
"riskcount": 3,
"details": [
{
"type": "交叉任职风险",
"risklevel": "中",
"riskinfo": "该企业管理团队疑似呈现“一套人马、多块牌子”特征"
},
{
"type": "多个电话风险",
"risklevel": "中",
"riskinfo": "该企业联系电话同时对应多家企业"
}
]
}
}
| 参数名称 | 类型 | 必填 | 说明 |
|---|---|---|---|
| company | string | 是 | 公司名称(company,creditno,regno,orgno四选一) |
| creditno | string | 是 | 统一信用代码 |
| regno | string | 是 | 注册号 |
| orgno | string | 是 | 组织机构代码 |
| page | string | 是 | 页码 |
| pagesize | string | 是 | 每页数量,默认10,最大20 |
| 参数名称 | 类型 | 说明 |
|---|---|---|
| name | string | 公司名称 |
| shareholder | string | 股东名称 |
| stockname | string | 股票名称 |
| stockcode | string | 股票代码 |
| noticedate | string | 公告日期 |
| startdate | string | 质押开始日期 |
| unfreezedate | string | 质押解除日期 |
| shares | string | 质押股份数量(股) |
| marketvalue | string | 质押股份市值(元) |
| holdratio | string | 占所持股份比例 |
| totalshareratio | string | 占总股本比例 |
| pledgee | string | 质押机构 |
| purpose | string | 质押目的 |
| reason | string | 质押原因 |
| closeprice | string | 质押日收盘价 |
| warningline | string | 预警线(估算) |
| liquidationline | string | 平仓线(估算) |
| status | string | 状态 |
| total | int | 总数 |
| page | int | 页码 |
| pagesize | int | 每页数量 |
$url = "https://api.jisuapi.com/enterpriserisk/stockpledge?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/enterpriserisk/stockpledge?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/enterpriserisk/stockpledge?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/enterpriserisk/stockpledge?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": {
"pledge": [
{
"name": "海南海德资本管理股份有限公司",
"shareholder": "海南祥源投资有限公司",
"stockname": "海德股份",
"stockcode": "000567",
"noticedate": "2018-01-16",
"startdate": "2017-01-12",
"unfreezedate": null,
"shares": "9718900",
"marketvalue": "76893253.9754062",
"holdratio": "28.76",
"totalshareratio": "6.4278",
"pledgee": "东兴证券股份有限公司",
"purpose": "贷款",
"reason": "海南祥源投资有限公司质押股份给东兴证券股份有限公司用于融资",
"closeprice": "7.911723958",
"warningline": "5.06350333312",
"liquidationline": "4.43056541648",
"status": "未解押"
},
{
"name": "海南海德资本管理股份有限公司",
"shareholder": "海南祥源投资有限公司",
"stockname": "海德股份",
"stockcode": "000567",
"noticedate": "2018-04-28",
"startdate": "2016-03-11",
"unfreezedate": null,
"shares": "24073637",
"marketvalue": "130435994.268028",
"holdratio": "71.2382",
"totalshareratio": "5.4445",
"pledgee": "东兴证券股份有限公司",
"purpose": "贷款",
"reason": "海南祥源投资有限公司质押股份给东兴证券股份有限公司用于融资",
"closeprice": "5.4182089008",
"warningline": "3.467653696512",
"liquidationline": "3.034196984448",
"status": "未解押"
}
],
"total": 24,
"page": 1,
"pagesize": 10
}
}
| 参数名称 | 类型 | 必填 | 说明 |
|---|---|---|---|
| company | string | 是 | 公司名称(company,creditno,regno,orgno四选一) |
| creditno | string | 是 | 统一信用代码 |
| regno | string | 是 | 注册号 |
| orgno | string | 是 | 组织机构代码 |
| page | string | 是 | 页码 |
| pagesize | string | 是 | 每页数量,默认10,最大20 |
| 参数名称 | 类型 | 说明 |
|---|---|---|
| decisionno | string | 处罚决定书文号 |
| illegaltype | string | 违法行为类型 |
| penaltytype | string | 处罚类型 |
| content | string | 处罚内容 |
| basis | string | 处罚依据 |
| reason | string | 处罚事由 |
| authority | string | 作出处罚决定机关 |
| legalperson | string | 法定代表人 |
| decisiondate | string | 作出处罚决定书日期 |
| publishdate | string | 公示日期 |
| filename | string | 行政处罚决定书文件名称 |
| remark | string | 备注 |
| name | string | 违法条例 |
| count | int | 数量 |
| total | int | 总数 |
| page | int | 页码 |
| pagesize | int | 每页数量 |
$url = "https://api.jisuapi.com/enterpriserisk/adminpenalty?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/enterpriserisk/adminpenalty?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/enterpriserisk/adminpenalty?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/enterpriserisk/adminpenalty?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": {
"penalty": [
{
"decisionno": "京朝市监处罚【xxxx】xxx号",
"illegaltype": null,
"penaltytype": "罚款",
"content": "的规定。现责令当事人立即停止侵权行为,并决定处罚如下:罚款:20000元",
"basis": "《中华人民共和国商标法》第六十条第二款",
"reason": "2017年1月14日,xxxx有限公司经国家工商行政管理总局商标局核...",
"authority": "北京市朝阳区市场监督管理局",
"legalperson": "xx",
"decisiondate": "2023-04-12",
"publishdate": "2023-04-12",
"filename": "",
"remark": ""
},
{
"decisionno": "京朝市监处罚【xxxx】2xx号",
"illegaltype": null,
"penaltytype": "罚款",
"content": "现责令当事人改正上述违法行为,并决定处罚如下:罚款:50000元",
"basis": "《中华人民共和国食品安全法》(2021版)第一百二十四条第一款第(一)项",
"reason": "2021年8月9日厦门市产品质量监督检验院检验不合格...",
"authority": "北京市朝阳区市场监督管理局",
"legalperson": "王远征",
"decisiondate": "2022-06-17",
"publishdate": "2022-06-17",
"filename": "",
"remark": ""
}
],
"typecount": [
{
"name": "当事人上述行为,分别构成了《中华人民共和国价格法》第十四条第(二)项“在依法降价处理鲜活商品、季节性商品、积压商品等商品外,为了排挤竞争对手或者独占市场,以低于成本的价格倾销,扰乱正常的生产经营秩序,损害国家利益或者其他经营者的合法权益”、第十四条第(四)项“利用虚假的或者使人误解的价格手段,诱骗消费者或者其他经营者与其进行交易”的价格违法行为",
"count": 1
},
{
"name": "《中华人民共和国食品安全法》",
"count": 1
}
],
"total": 5,
"page": 1,
"pagesize": 10
}
}
| 参数名称 | 类型 | 必填 | 说明 |
|---|---|---|---|
| company | string | 是 | 公司名称(company,creditno,regno,orgno四选一) |
| creditno | string | 是 | 统一信用代码 |
| regno | string | 是 | 注册号 |
| orgno | string | 是 | 组织机构代码 |
| page | string | 是 | 页码 |
| pagesize | string | 是 | 每页数量,默认10,最大20 |
| 参数名称 | 类型 | 说明 |
|---|---|---|
| caseno | string | 案号 |
| caseyear | string | 案件年 |
| title | string | 标题 |
| type | string | 案件类型 |
| contenttype | string | 内容类型(判决书/裁定书) |
| trialround | string | 审判轮次 |
| courtname | string | 法院名称 |
| courtlevel | string | 法院级别 |
| courtprovince | string | 法院省 |
| courtcity | string | 法院城市 |
| trialdate | string | 判决时间 |
| publishdate | string | 发布时间 |
| claim | string | 索赔金额 |
| verdictclaim | string | 判决金额 |
| litigationrequest | string | 诉讼请求 |
| verdict | string | 判决 |
| basis | string | 依据 |
| acceptancefee | string | 受理费用及承担人 |
| name | string | 当事人姓名 |
| identity | string | 角色 |
| status | string | 当前角色(起诉方/应诉方) |
| total | int | 示例: 218 |
| page | int | 页码 |
| pagesize | int | 每页数量 |
$url = "https://api.jisuapi.com/enterpriserisk/judgmentdoc?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/enterpriserisk/judgmentdoc?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/enterpriserisk/judgmentdoc?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/enterpriserisk/judgmentdoc?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": {
"judgment": [
{
"caseno": "(xxxx)鲁xxxx民初xxxx号",
"caseyear": "2025",
"title": "周某;聊城市....",
"type": "民事案件",
"contenttype": "裁定书",
"trialround": "一审",
"courtname": "茌平县人民法院",
"courtlevel": "基层法院",
"courtprovince": "山东",
"courtcity": "聊城市",
"trialdate": "2025-07-31",
"publishdate": "2025-12-22",
"claim": null,
"verdictclaim": null,
"litigationrequest": null,
"verdict": "准许周某撤诉...",
"basis": null,
"acceptancefee": "受理费50元...",
"litigants": [
{
"name": "周某",
"identity": "原告",
"status": "起诉方",
"verdict": "其他(撤诉)"
},
{
"name": "聊城市茌平区某店",
"identity": "被告",
"status": "应诉方",
"verdict": "其他(撤诉)"
}
],
"reasons": [
"买卖合同纠纷"
]
},
{
"caseno": "(xxxx)辽xxxx民初xxxx号",
"caseyear": "2025",
"title": "吕某;某公司....",
"type": "民事案件",
"contenttype": "裁定书",
"trialround": "一审",
"courtname": "阜新市细河区人民法院",
"courtlevel": "基层法院",
"courtprovince": "辽宁",
"courtcity": "阜新市",
"trialdate": "2025-06-16",
"publishdate": "2025-07-11",
"claim": 2950,
"verdictclaim": null,
"litigationrequest": "原告吕某...",
"verdict": "本案移送至上海市静安区人民法院审理...",
"basis": null,
"acceptancefee": null,
"litigants": [
{
"name": "吕某",
"identity": "原告",
"status": "起诉方",
"verdict": "其他"
},
{
"name": "xxxx有限公司",
"identity": "被告",
"status": "应诉方",
"verdict": "其他"
}
],
"reasons": [
"买卖合同纠纷"
]
}
],
"total": 218,
"page": 1,
"pagesize": 10
}
}
| 代号 | 说明 |
|---|---|
| 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
