汽车VIN码查询精准版
最后更新于:2022-04-02 08:23:37
## 车辆VIN码查询精准版(停售)
![](https://docs.gechiui.com/gc-content/uploads/sites/kancloud/a3/8f/a38f385acc088b85e5e53c5ed5646091_184x178.png)
> 根据VIN码准确定型,获取保险车辆列表(含配置信息) 包含:车型代码,唯一标识、车型名称、品牌名称、车系名称、车组名称、排量等等。
## 接口费用( [点击购买](https://market.topthink.com/product/442))
> 最低 0.15元/次
## 接口调用([调用须知](https://docs.topthink.com/think-api/1835086))
### 请求地址
```
GET https://api.topthink.com/car/vin_pro
```
### 请求参数
| 名称 | 必填 | 类型 | 说明 |
| --- | --- | --- | --- |
| appCode| 是| string|用户授权码,参考[API调用](https://docs.topthink.com/think-api/1835086) |
| vin| 是 | string | 车架号 |
### 返回`data`参数
| 名称 | 类型 | 示例值 | 描述 |
| --- | --- | --- | --- |
| vehicleList| Array | | 车型列表 |
| brandName | String | 大众 | 品牌名称 |
| vehicleName | String | 宝来 | 车型名称 |
| standardName | String | 1.6 手自一体 时尚版 | 销售名称 |
| familyName| String | 名图 | 车系名称 |
| vin | String | | 17位的车架号vin |
| groupName | String | 名图(13/11-17/04)| 车组名称 |
| groupCode| String | XDA1AH01 | 车组编码 |
| vehicleId | String | AP\_4028b2b651b4996e015238e9bd724ea5 | 车型代码,唯一标识 |
| gearboxType | String | 手自一体 | 变速箱类型 |
| yearPattern | String | 2019 | 年款 |
| engineModel | String | G4NB | 发动机型号 |
| displacement | String | 1.797| 排量 |
| remark | String | 手自一体 DLX尊贵型 国Ⅴ | 备注 |
| fuelJetType | String | 多点电喷| 燃油喷射形式 |
| supplyOil | String | | 供油方式 |
| drivenType | String | 前置前驱 | 驱动形式 |
| marketDate | String | 201601 | 上市年份 |
| listPrice | String | 159800.0 | 厂商指导价 |
| purchasePrice | String | 137800.0 | 新车购置价 |
| bodyType| String | 三厢 | 车身结构 |
| cylinderNum | String | 6 | 档位数 |
| stopDate | String | 201704| 停产时间 |
| vehicleWeight| String | | 车身重量 |
| cfgLevel | String | 尊贵级 | 配置等级 |
| importFlag | String | 国产 | 国产/进口 |
| vehicleSize | String | 4710\*1820\*1470 | 车身尺寸 |
| wheelbase | String | 2770| 轴距 |
| gearNum | String | 6 | 变速器档数 |
| fullWeight | String | 1441 | 整备质量(千克) |
| power | String | 105 | 功率 |
| effluentStandard| String | 国五| 排放标准 |
| seat| String | 5 | 座位数 |
| standardname2 | String | 前轮驱动 | 驱动方式 |
| powerType| String | 汽油 | 动力类型 |
| vehicleColor| String | | 车身颜色 |
| vehlsSeri| String | 乘用车 | 是否商用车 |
| vehicleColor| String | | 车身颜色 |
## SDK调用
```
$client = new Client("YourAppCode");
$result = $client->carVinPro()
->withVin('LHGCP260*********')
->request();
dump($result);
```
返回结果示例:
```
{
"code": 0,
"message": "成功",
"data":{
"vehicleList": [
{
"brandName": "北京现代",
"familyName": "名图",
"groupName": "名图(13/11-17/04)",
"groupCode": "XDA1AH01",
"vehicleName": "2016款 北京现代 名图 三厢 1.8L 手自一体 尊贵型 (BH7184PAV)",
"vehicleId": "AP_4028b2b651b4996e015238e9bd724ea5",
"gearboxType": "手自一体",
"yearPattern": "2016",
"engineModel": "G4NB",
"displacement": "1.797",
"remark": "手自一体 DLX尊贵型 国Ⅴ",
"fuelJetType": "多点电喷",
"supplyOil": null,
"drivenType": "前置前驱",
"marketDate": "201601",
"listPrice": "159800.0",
"purchasePrice": "137800.0",
"bodyType": "三厢",
"cylinderNum": "4缸",
"stopDate": "201704",
"roz": "93号(京92号)",
"vehicleWeight": "1860",
"vehIsSeri": "乘用车",
"standardName": "北京现代BH7184PAV轿车",
"cfgLevel": "尊贵型",
"importFlag": "合资",
"vehicleSize": "4710*1820*1470",
"wheelbase": "2770",
"gearNum": "6",
"fullWeight": "1441",
"power": "105",
"effluentStandard": "国五",
"seat": "5",
"standardname2": "BH7184PAV",
"newClassNameTwo": "中型轿车(B)",
"companyName": "北京现代汽车有限公司",
"powerType": "汽油",
"vehicleAlias": "名图1.8L AT尊贵型",
"cms": "四门",
"vehicleColor": null,
"uploadDate": "2016-01-28",
"hasConfig": "1"
}
]
}
```
';