热门 综合报告 3 个平台提供

企业 360 度全景报告

ApiCode: report.360

企业 360 度全景报告,融合国内 + 国际数据,涵盖财务、风险、关联、知产、海外业务

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

输入参数

参数名 类型 必填 说明
company_name credit_code credit_code

返回字段

工商 关联

调用示例

curl -X POST 'https://openapi.jiawei.net/api/v1/report.360' \
  -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/report.360');
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/report.360",
    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/report.360")
    .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": "一致"
    }
}

数据来源

  • 天远API
    ty · 上游价 ¥0.30
    priority
  • 企查查
    qcc · 上游价 ¥0.30
    priority
  • 天眼查
    tyc · 上游价 ¥0.30
    priority

错误码

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