热门 司法风险 1 个平台提供

限制高消费

ApiCode: judicial.66_1

企业限制高消费信息,包括限制高消费企业信息、案由等

接口单价
¥ 0.15 /次
充值即用,套餐更优惠

输入参数

参数名 类型 必填 说明
ename String 必填
pname String 可选 董监高姓名
skip Number 可选 跳过条目数(默认为0
单页返回20条数据)

返回字段

是否历史1 主键 案号 限制高消费人 限消正文 性别 法院 案由 法院码 标准法院名称 标准案号 立案时间 标准案由信息 限制令发布日期

调用示例

curl -X POST 'https://openapi.jiawei.net/api/v1/judicial.66_1' \
  -H 'X-App-Key: ak_xxxxxxxxxxxx' \
  -H 'X-App-Sign: <hmac_sha256(timestamp, app_secret)>' \
  -H 'X-App-Timestamp: 1700000000' \
  -H 'Content-Type: application/json' \
  -d '{"company_name":"佳维网络科技有限公司"}'
<?php
$ch = curl_init('https://openapi.jiawei.net/api/v1/judicial.66_1');
curl_setopt_array($ch, [
    CURLOPT_POST           => true,
    CURLOPT_RETURNTRANSFER => true,
    CURLOPT_HTTPHEADER     => [
        'X-App-Key: ak_xxxxxxxxxxxx',
        'X-App-Sign: ' . hash_hmac('sha256', $timestamp, $appSecret),
        'X-App-Timestamp: ' . $timestamp,
        'Content-Type: application/json',
    ],
    CURLOPT_POSTFIELDS => json_encode([
        'company_name' => '佳维网络科技有限公司',
    ]),
]);
$response = curl_exec($ch);
echo $response;
import requests, hmac, hashlib, time

app_key = "ak_xxxxxxxxxxxx"
app_secret = "xxxxxxxxxxxxxxxxxxxx"
ts = str(int(time.time()))
sign = hmac.new(app_secret.encode(), ts.encode(), hashlib.sha256).hexdigest()

resp = requests.post(
    "https://openapi.jiawei.net/api/v1/judicial.66_1",
    headers={
        "X-App-Key": app_key,
        "X-App-Sign": sign,
        "X-App-Timestamp": ts,
        "Content-Type": "application/json",
    },
    json={"company_name": "佳维网络科技有限公司"},
)
print(resp.json())
OkHttpClient client = new OkHttpClient();

RequestBody body = RequestBody.create(
    "{\"company_name\":\"佳维网络科技有限公司\"}",
    MediaType.parse("application/json")
);

Request request = new Request.Builder()
    .url("https://openapi.jiawei.net/api/v1/judicial.66_1")
    .post(body)
    .addHeader("X-App-Key", "ak_xxxxxxxxxxxx")
    .addHeader("X-App-Sign", "<hmac_sha256(timestamp, app_secret)>")
    .addHeader("X-App-Timestamp", "1700000000")
    .build();

Response response = client.newCall(request).execute();
System.out.println(response.body().string());

返回示例

{
    "code": 0,
    "message": "success",
    "request_id": "req_64a1b2c3d4e5f6",
    "data": {
        "company_name": "佳维网络科技有限公司",
        "credit_code": "91310000XXXXXXXXXX",
        "legal_person": "张三",
        "reg_status": "在营",
        "result": "一致"
    }
}

数据来源

  • 启信宝
    qxb · 上游价 ¥0.15
    priority

错误码

含义
0成功
40001AppKey 无效
40003签名错误
42900请求超限
40201余额不足
40400无数据
50000服务器错误