VIN原厂配置查询

VIN原厂配置查询

  • 189
  • 101
输入VIN车辆识别代码,查询车辆的品牌、车系、车型、销售代码、配置列表等信息。此返回为原厂配置信息,每个品牌返回的字段略有不同。目前支持奔驰、宝马、现代、起亚、凯迪拉克、别克、雪佛兰等品牌。
1.50/2次
https://api.jisuepc.com/vin3/query
JSON,JSONP
GET POST
https://api.jisuepc.com/vin3/query?appkey=yourappkey&vin=LSGPC04U89F070926

请求参数:

API在线测试
参数名称类型必填说明
vin string 车架号

返回参数:

参数名称类型说明
seatnum string 座位数
axlenum string 轴数
reartrack string 后轮距
bodytype string 车体结构
brand string 品牌
displacement string 排量
drivemode string 驱动方式
environmentalstandards string 排放标准
enginemodel string 发动机型号
fronttrack string 前轮距
fueltype string 燃料种类
height string 外形尺寸(mm)高
len string 外形尺寸(mm) 长
yeartype string 年款
comfuelconsumption string 油耗
maxpower string 最大功率(kW)
tirenum string 轮胎数
tiresize string 轮胎规格
weight string 整备质量(kg)
name string 车系名称
wheelbase string 轴距
width string 外形尺寸(mm)宽
vin string 车架号
model string 车型model
engineno string 发动机号
color string 车身颜色
colorcode string 车身颜色代号
productiondate string 生产日期
typename string 车系
salecode string 销售代码
market string 销售市场
chassis string 机架
framemodel string 车架model
steertype string 方向盘方向
interiorcolor string 内饰颜色
interiorcolorcode string 内饰颜色代码
gearboxno string 变速箱型号
configlist string 配置列表

请求代码:

<?php

require_once 'curl.func.php';

$appkey = 'your_appkey_here';//你的appkey
$vin = 'LSGPC04U89F070926';
$url = "http://api.jisuepc.com/vin3/query?appkey=$appkey&vin=$vin";

$result = curlOpen($url);

$jsonarr = json_decode($result, true);
//exit(var_dump($jsonarr));

if($jsonarr['status'] != 0)
{
    echo $jsonarr['msg'];
    exit();
}

$data = $jsonarr['result'];
print_r($data);
                                

JSON返回示例 :

{
    "status": 0,
    "msg": "ok",
    "result": {
        "seatnum": null,
        "reartrack": "",
        "bodytype": null,
        "brand": "斯柯达",
        "displacement": null,
        "drivemode": null,
        "environmentalstandards": null,
        "enginemodel": null,
        "fronttrack": "",
        "fueltype": null,
        "height": "",
        "len": "",
        "yeartype": "2008",
        "maxpower": null,
        "tirenum": "",
        "tiresize": null,
        "weight": "",
        "name": "斯柯达 Octavia 2008年 2008 CDFA 1.6升,77千瓦,105马力,4缸 6档自动变速箱",
        "wheelbase": "",
        "width": "",
        "model": null,
        "engineno": null,
        "color": null,
        "colorcode": null,
        "productiondate": "20080220",
        "vin": "LSVAL41Z882104202",
        "typename": "明锐",
        "salecode": "",
        "market": "",
        "chassis": null,
        "framemodel": "",
        "steertype": null,
        "interiorcolor": null,
        "interiorcolorcode": null,
        "gearboxno": null,
        "configlist": [
            {
                "code": "0A2",
                "name": "4 门"
            },
            {
                "code": "0AG",
                "name": "前部稳定杆"
            },
            {
                "code": "0BG",
                "name": "稳定器"
            },
            {
                "code": "0ER",
                "name": "差异化安装,|变速箱AQ 250|-- 汽车部件 --"
            },
            {
                "code": "0FS",
                "name": "中国加工过程"
            }
        ]
    }
}
                                

API错误码:

代号说明
201 VIN为空
202 VIN不正确
210 没有信息

系统错误码:

代号说明
101 APPKEY为空或不存在
102 APPKEY已过期
103 APPKEY无请求此数据权限
104 请求超过次数限制
105 IP被禁止
106 IP请求超过限制
107 接口维护中
108 接口已停用
计次套餐套餐规格价格
试用套餐 2次 1.50元 ≈0.75元/次
Level1 1000次 680.00元 ≈0.68元/次
Level2 5000次 3250.00元 ≈0.65元/次
Level3 10000次 6000.00元 ≈0.6元/次
Level4 50000次 27500.00元 ≈0.55元/次
Level5 100000次 50000.00元 ≈0.5元/次