首页 图像识别 行驶证识别
行驶证识别

行驶证识别

  • 238
  • 635
识别行驶证,返回车牌、车辆类型、车型、所有人、车架号、发动机号等信息
230.00/3000次
https://api.binstd.com/drivinglicenserecognition/recognize
JSON,JSONP
POST
https://api.binstd.com/drivinglicenserecognition/recognize?appkey=yourappkey

请求参数:

API在线测试
参数名称类型必填说明
pic file/string 行驶证图片文件 POST上传,支持传base64格式的图片内容 图片转BASE64

返回参数:

参数名称类型说明
lsprefix string 车牌前缀
lsnum string 车牌号
lstype string 车牌类型
lstypename string 车牌类型名称
realname string 所有人
address string 地址
cartype string 品牌型号
frameno string 车架号(车辆识别代号)
engineno string 发动机号
regdate string 注册日期
issuedate string 发证日期
usetype string 使用性质

请求代码:

查看代码
<?php

require_once 'curl.func.php';

$appkey = 'your_appkey_here';//你的appkey
$url = "https://api.binstd.com/drivinglicenserecognition/recognize?appkey=$appkey";

$post = array(
    'pic'=>base64_encode(file_get_contents('sfz1.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['lsprefix'].' '.$result['lsnum'].' '.$result['lstype'].' '.$result['lstypename'].'
'; echo $result['realname'].' '.$result['address'].' '.$result['cartype'].' '.$result['frameno'].'
'; echo $result['engineno'].' '.$result['regdate'].' '.$result['issuedate'].' '.$result['usetype'];

JSON返回示例 :

{
    "status": "0",
    "msg": "ok",
    "result": {
        "lsprefix": "苏",
        "lsnum": "A12345",
        "lstype": "02",
        "lstypename": "小型轿车",
        "realname": "李先生",
        "address": "浙江省杭州市拱墅区智慧立方D座603",
        "cartype": "宝马牌7200MD",
        "frameno": "LBVUB11080VB80000",
		"engineno": "55665544",
		"regdate": "2017-03-25",
		"issuedate": "2017-03-25",
		"usetype": "非营运",
    }
}
                    

API错误码:

代号说明
201 图片为空
202 图片格式错误
203 证件类型不存在
208 识别失败
210 没有信息

系统错误码:

代号说明
101 APPKEY为空或不存在
102 APPKEY已过期
103 APPKEY无请求此数据权限
104 请求超过次数限制
105 IP被禁止
106 IP请求超过限制
107 接口维护中
108 接口已停用
名称权限价格
免费套餐 5次 免费
Level1 3000次 230.00元
Level2 5000次 375.00元
Level3 10000次 725.00元

活动推荐ACTIVITY 更多

  • orc活动

热门API接口推荐RECOMMENDED DATA 更多

开通BinSTD会员

开通账号:

×

会员类型:

  • 会员

会员时长:

  • 按年付

总金额:

  • ¥ 600.00元原价:900.00元
  • ¥ 300.00元原价:450.00元
  • ¥ 50.00元原价:75.00元
  • ¥ 100.00元原价:150.00元
  • ¥ 150.00元原价:225.00元
  • ¥ 200.00元原价:300.00元
  • ¥ 250.00元原价:375.00元