## 驾驶证累计计分查询(停售) ![](https://img.kancloud.cn/2f/6e/2f6ea6bde19a86f139d9b009696b208c_155x146.png) > 根据驾驶证信息查询驾驶证累计扣分 ## 接口费用( [点击购买](https://market.topthink.com/product/375)) > 最低 0.10元/次 ## 接口调用([调用须知](https://docs.topthink.com/think-api/1835086)) ### 请求地址 ``` GET https://api.topthink.com/luoz/points ``` ### 请求参数 | 名称 | 必填 | 类型 | 说明 | | --- | --- | --- | --- | | appCode| 是| string|用户授权码,参考[API调用](https://docs.topthink.com/think-api/1835086) | | jszh | 是 | string | 驾驶证号 | | dabh | 是 | string | 档案编号 | ### 返回`data`参数 | 名称 | 类型 | 说明 | | --- | --- | --- | | reason | string | 说明备注 | | result | string | 扣分情况 | ## SDK调用 ``` $client = new Client("YourAppCode"); $result = $client->luozPoints() ->withJszh('驾驶证号') ->withDabh('档案编号') ->request(); dump($result); ``` 返回结果示例: ``` { "code": 0, "message": "成功", "data":{ } } ```