首页 图像识别 VIN识别
VIN识别

VIN识别

  • 253
  • 98
支持对车辆挡风玻璃处和行驶证上的车架号码进行识别,返回车架号等信息。
190.00/1000次
申请就送5次
https://api.jisuapi.com/vinrecognition/recognize
JSON
POST
https://api.jisuapi.com/vinrecognition/recognize?appkey=yourappkey

请求参数:

API在线测试
参数名称类型必填说明
pic file/string 图片文件 POST上传,支持传base64格式的图片内容 JPG识别率略高 最大300K

返回参数:

参数名称类型说明
vin string 车架号
iscorrect int 是否返回正确的车架号(1是,0不是)
brand string 品牌
manufacturer string 厂家名称

请求代码:

查看代码
<?php

require_once 'curl.func.php';

$appkey = 'your_appkey_here';//你的appkey
$url = "http://api.jisuapi.com/vinrecognition/recognize?appkey=$appkey";

$post = array(
    'pic'=>base64_encode(file_get_contents('11.jpg')), //'@'.realpath('11.jpg')    
);
$result = curlOpen($url, array('post'=>$post, 'isupfile'=>true));
$jsonarr = json_decode($result, true);

if($jsonarr['status'] != 0)
{
    echo $jsonarr['msg'];
    exit();
}
$result = $jsonarr['result'];
echo $result['vin'].' '.$result['iscorrect'].' '.$result['brand'].' '.$result['manufacturer'].'
';

JSON返回示例 :

{
    "status": 0,
    "msg": "ok",
    "result": {
        "vin": "LFV2A21K0G4053021",
        "iscorrect": 1,
        "brand": "大众",
        "manufacturer": "一汽大众"
    }
}
                    

API错误码:

代号说明
201 图片为空
202 图片格式错误
203 图片大小超过300K
204 识别失败

系统错误码:

代号说明
101 APPKEY为空或不存在
102 APPKEY已过期
103 APPKEY无请求此数据权限
104 请求超过次数限制
105 IP被禁止
106 IP请求超过限制
107 接口维护中
108 接口已停用
计次套餐套餐规格价格
免费套餐 5次 0.00 元  ≈0元/次
Level1 1000次 190.00 元  ≈0.19元/次
Level2 10000次 1358.00 元  ≈0.1358元/次
Level3 20000次 2598.00 元  ≈0.1299元/次
Level4 50000次 5798.00 元  ≈0.11596元/次
Level5 100000次 9698.00 元  ≈0.09698元/次

活动推荐ACTIVITY 更多

  • orc活动

其它推荐RECOMMENDED DATA 更多