车辆静态数据查询
- 接口地址:https://api.itink.com.cn/api/vehicle/getData.json
- 返回格式:json
- 请求方式:GET,POST
- 请求示例:https://api.itink.com.cn/api/vehicle/getData?token=您的token&carId=车架号或车牌号
-
接口描述:获取车辆静态数据。
-
请求参数说明
| 名称 | 是否必填 | 数据类型 | 说明 |
|---|---|---|---|
| token | 是 | string | 访问凭据;由数据开放平台提供 |
| carId | 是 | string | 车辆VIN信息,必须输入完整的17位车架号或者车牌LPN信息 |
- 返回参数说明
| 名称 | 数据类型 | 说明 | |
|---|---|---|---|
| code | string | 返回值:1: 成功,-1:失败 | |
| msg | string | 接口请求后的返回的中文描述 | |
| data | |||
| └ | vin | String | 车辆VIN信息 |
| └ | vehiclelicense | String | 车牌号 |
| └ | emissionleveltype | Short | 排放阶段(1国六,2国五) |
| └ | vehiclemodel | String | 车辆型号 |
| └ | enginemodel | String | 发动机型号 |
| └ | epavehicletype | Short | 燃料类型(4重型柴油,5重型燃气) |
| └ | enterprisename | String | 环保公开企业名称 |
| └ | certificate | String | 协议类型,为空的时候表示协议1(1:国六GB17691-2018;2:国六HJ ;3:4月1号之后新增的部标协议 HJ1239-2021) |
| └ | vehiclemodeltype | String | 品牌型号 |
- 返回内容示例
正常返回示例: { "type": "success", "data": [ { "carId": "TEST123456786TEST" "vehiclelicense": "重B00003" "emissionleveltype": "1" "vehiclemodel": "CA4250P2K8T1NE6A80" "enginemodel": "WP13NG430E61" "epavehicletype": 5 "enterprisename": "北汽福田股份有限公司" "certificate" :1 "vehiclemodeltype" :"" } ] }