## 车辆品牌车型大全(停售) >[danger]### 免费接口,每日100次免费调用,会员可不限次数调用,购买[API会员](https://market.topthink.com/product/210) ![](https://img.kancloud.cn/09/d6/09d6bea19f8ab9dbd7b1083d9e0cd8f3_215x154.png) > 车辆品牌大全、车系、车型基本信息查询 ## 接口调用([调用须知](https://docs.topthink.com/think-api/1835086)) ## 接口1:品牌列表 ### 请求地址 ``` GET https://api.topthink.com/car/brand ``` ### 请求参数 | 名称 | 必填 | 类型 | 说明 | | --- | --- | --- | --- | | appCode| 是| string|用户授权码,参考[API调用](https://docs.topthink.com/think-api/1835086) | | firstLetter | 否 | string | 品牌名称拼音首字母,如:A | ### 返回`data`参数 | 名称 | 类型 | 说明 | | --- | --- | --- | | id | string | 品牌ID | | brand\_name | string | 品牌名称 | | brand\_logo | string | 品牌 logo | | first\_letter | string | 品牌名称首字母 | ## SDK调用 ``` $client = new Client("YourAppCode"); $result = $client->carBrand() ->request(); dump($result); ``` 返回数据示例: ~~~ { "message": "查询成功", "data": { { "id": "1", "first_letter": "A", "brand_name": "奥迪", "brand_logo": "https://juhe.oss-cn-hangzhou.aliyuncs.com/api_image/538/brand/1.png" }, ... } "code": 0 } ~~~ ## 接口2:根据车辆品牌ID查询旗下车系列表 ### 请求地址 ``` GET https://api.topthink.com/car/series ``` ### 请求参数 | 名称 | 必填 | 类型 | 说明 | | --- | --- | --- | --- | | appCode| 是| string|用户授权码,参考[API调用](https://docs.topthink.com/think-api/1835086) | | brandid | 是 | string | 车辆品牌ID | | levelid | 否 | string | 车系类型ID,,1:微型车,2:小型车,3:紧凑型车,4:中型车,5:中大型车,6:大型车,7:跑车,8:MPV,11:微面,12:微卡,13:轻客,14:低端皮卡,15:高端皮卡,16:小型SUV,17:紧凑型SUV,18:中型SUV,19:中大型SUV,20:大型SUV,21:紧凑型MPV | ### 返回`data`参数 | 名称 | 类型 | 说明 | | --- | --- | --- | | id | string | 车系ID | | name | string | 车系名称 | | brandid | string | 品牌ID | | levelid | string | 车系类型,1:微型车,2:小型车,3:紧凑型车,4:中型车,5:中大型车,6:大型车,7:跑车,8:MPV,11:微面,12:微卡,13:轻客,14:低端皮卡,15:高端皮卡,16:小型SUV,17:紧凑型SUV,18:中型SUV,19:中大型SUV,20:大型SUV,21:紧凑型MPV | | levelname | string | 车系类型名称 | ## SDK调用 ``` $client = new Client("YourAppCode"); $result = $client->carSeries() ->withBrandid(1) ->request(); dump($result); ``` 返回数据示例: ~~~ { "message": "查询成功", "data": { { "id": "1", "name": "奥迪A6L新能源", "brandid": "1", "levelid": "5", "levelname": "中大型车", "sname": "一汽-大众奥迪" }, ... } "code": 0 } ~~~ ## 接口3:根据车系id查询旗下车型列表 ### 请求地址 ``` GET https://api.topthink.com/car/models ``` ### 请求参数 | 名称 | 必填 | 类型 | 说明 | | --- | --- | --- |---| | appCode| 是| string|用户授权码,参考[API调用](https://docs.topthink.com/think-api/1835086) | |  seriesId | 是 | string | 车系ID | |  year | 否 | string | 车型年份,如:2019 | ### 返回`data`参数 | 名称 | 类型 | 说明 | | --- | --- | --- | | id | string | 车型ID | | series\_id | string | 车系ID | | name | string | 车型名称 | | year | string | 车型年份 | | peizhi | string | 车型配置 | ## SDK调用 ``` $client = new Client("YourAppCode"); $result = $client->carModels() ->withSeriesId(2) ->request(); dump($result); ``` 返回数据示例: ~~~ { "message": "查询成功", "data": { { "id": "11", "series_id": "2", "name": "2019款 Sportback 35 TFSI 进取型 国V", "year": "2019", "peizhi": "1.4升 涡轮增压 150马力" }, ... } "code": 0 } ~~~