车型大全
<h2>概述</h2>
<p>车型大全提供从品牌到具体车型的详细数据,包括以下API:
<a href="#brand">1. 获取所有品牌</a>
<a href="#series">2. 根据品牌获取车系</a>
<a href="#model">3. 根据车系获取车型</a>
<a href="#detail">4. 获取车型详细信息</a>
<a href="#keyword">5. 车型搜索</a></p>
<h2>Api接入说明</h2>
<h3>公用参数</h3>
<p>车型大全所有API都需要以下公用参数</p>
<table>
<thead>
<tr>
<th>名称</th>
<th>类型</th>
<th>说明</th>
</tr>
</thead>
<tbody>
<tr>
<td>appId</td>
<td>String</td>
<td>服务商分配的唯一标识</td>
</tr>
<tr>
<td>timestamp</td>
<td>Long</td>
<td>当前时间的毫秒数</td>
</tr>
<tr>
<td>sign</td>
<td>String</td>
<td>签名,详见签名算法说明</td>
</tr>
</tbody>
</table>
<p><a name="sign"></a></p>
<h3>签名算法</h3>
<pre><code>sign = sha256(appId + appSecret + timestamp)</code></pre>
<p>用服务商分配的 <strong>appId</strong>、服务商分配的 <strong>appSecret</strong>,当前时间毫秒数 <strong>timestamp</strong>,按上述顺序拼接成字符串,再进行 <strong>sha256</strong> 哈希得到。如下:</p>
<pre><code class="language-java">String appId = &quot;xyzxy2121zxyz&quot;;
String timestamp = &quot;1555378976238&quot;;
String appSecret = &quot;efcefcef1121cefcefc1212121&quot;;
String str = appId + appSecret + timestamp;
String sign = sha256(str);</code></pre>
<h3>公共code返回码说明</h3>
<table>
<thead>
<tr>
<th>code</th>
<th>说明</th>
</tr>
</thead>
<tbody>
<tr>
<td>200</td>
<td>成功(计费)</td>
</tr>
<tr>
<td>400</td>
<td>参数错误</td>
</tr>
<tr>
<td>404</td>
<td>请求地址不正确</td>
</tr>
<tr>
<td>500</td>
<td>系统维护,请稍候再试</td>
</tr>
<tr>
<td>601</td>
<td>接口未开通</td>
</tr>
<tr>
<td>602</td>
<td>账号停用</td>
</tr>
<tr>
<td>603</td>
<td>余额不足请充值</td>
</tr>
<tr>
<td>604</td>
<td>接口停用</td>
</tr>
<tr>
<td>999</td>
<td>其他,以实际返回为准</td>
</tr>
</tbody>
</table>
<p>> 具体API返回码,请见以下具体API说明</p>
<p><a name="brand"></a></p>
<h2>获取所有品牌</h2>
<h3>请求地址</h3>
<p><code>https://api.jumdata.com/vehicle/query/brand</code></p>
<h3>请求方式</h3>
<ul>
<li>GET/POST</li>
</ul>
<h3>参数</h3>
<ul>
<li>无
> 注:公共参数必须,详见公共参数说明</li>
</ul>
<h3>正确返回</h3>
<pre><code class="language-json">{
&quot;msg&quot;: &quot;成功&quot;,
&quot;code&quot;: 200,
&quot;taskNo&quot;: &quot;09522434433117405247&quot;, // 本次请求号
&quot;data&quot;: [
{
&quot;depth&quot;: 1, //层级, 1-品牌, 2-子公司, 3-车系, 4-车型
&quot;initial&quot;: &quot;A&quot;, // 品牌首字母
&quot;name&quot;: &quot;奥迪&quot;, // 品牌名称
&quot;logo&quot;: &quot;http://pic1.jisuapi.cn/car/static/images/logo/300/1.png&quot;, // LOGO
&quot;id&quot;: 1, // 品牌id
&quot;parentid&quot;: 0 // 上级id,品牌的上级id固定0
},
{
&quot;depth&quot;: 1,
&quot;initial&quot;: &quot;A&quot;,
&quot;name&quot;: &quot;Aspark&quot;,
&quot;logo&quot;: &quot;http://pic1.jisuapi.cn/car/static/images/logo/300/67118.png&quot;,
&quot;id&quot;: 67118,
&quot;parentid&quot;: 0
},
{
&quot;depth&quot;: 1,
&quot;initial&quot;: &quot;A&quot;,
&quot;name&quot;: &quot;AC Schnitzer&quot;,
&quot;logo&quot;: &quot;http://pic1.jisuapi.cn/car/static/images/logo/300/47642.png&quot;,
&quot;id&quot;: 47642,
&quot;parentid&quot;: 0
},
...
]
}</code></pre>
<h3>失败返回</h3>
<pre><code class="language-json">{
&quot;msg&quot;: &quot;接口地址不正确&quot;,
&quot;code&quot;: 404
}</code></pre>
<p><a name="series"></a></p>
<h2>根据品牌获取车系</h2>
<h3>请求地址</h3>
<p><code>https://api.jumdata.com/vehicle/query/series</code></p>
<h3>请求方式</h3>
<ul>
<li>GET/POST</li>
</ul>
<h3>参数</h3>
<table>
<thead>
<tr>
<th>名称</th>
<th>必须</th>
<th>说明</th>
</tr>
</thead>
<tbody>
<tr>
<td>brandId</td>
<td>是</td>
<td>所有品牌API返回的品牌列表中的id</td>
</tr>
</tbody>
</table>
<p>> 注:公共参数必须,详见公共参数说明</p>
<h3>正确返回</h3>
<pre><code class="language-json">{
&quot;msg&quot;: &quot;成功&quot;,
&quot;code&quot;: 200,
&quot;taskNo&quot;: &quot;09522434433117405247&quot;, // 本次请求号
&quot;data&quot;: [
{
&quot;initial&quot;: &quot;A&quot;, // 首字母
&quot;name&quot;: &quot;一汽-大众奥迪&quot;, // 子公司
&quot;id&quot;: 219, // 子公司id
&quot;list&quot;: [ // 子公司下车系列表
{
&quot;depth&quot;: 3, //层级, 1-品牌, 2-子公司, 3-车系, 4-车型
&quot;name&quot;: &quot;奥迪A3&quot;, // 车系名称
&quot;logo&quot;: &quot;http://pic1.jisuapi.cn/car/static/images/logo/300/220.jpg&quot;, // 车系图片
&quot;id&quot;: 220, // 车系id
&quot;fullname&quot;: &quot;奥迪A3&quot;, // 车系全称
&quot;salestate&quot;: &quot;在销&quot; // 销售状态
},
{
&quot;depth&quot;: 3,
&quot;name&quot;: &quot;奥迪A4L&quot;,
&quot;logo&quot;: &quot;http://pic1.jisuapi.cn/car/static/images/logo/300/221.jpg&quot;,
&quot;id&quot;: 221,
&quot;fullname&quot;: &quot;奥迪A4L&quot;,
&quot;salestate&quot;: &quot;在销&quot;
},
...
]
},
{
&quot;initial&quot;: &quot;A&quot;,
&quot;name&quot;: &quot;进口奥迪&quot;,
&quot;id&quot;: 228,
&quot;list&quot;: [
{
&quot;depth&quot;: 3,
&quot;name&quot;: &quot;奥迪A1&quot;,
&quot;logo&quot;: &quot;http://pic1.jisuapi.cn/car/static/images/logo/300/229.jpg&quot;,
&quot;id&quot;: 229,
&quot;fullname&quot;: &quot;奥迪A1&quot;,
&quot;salestate&quot;: &quot;待销&quot;
},
{
&quot;depth&quot;: 3,
&quot;name&quot;: &quot;奥迪A3(进口)&quot;,
&quot;logo&quot;: &quot;http://pic1.jisuapi.cn/car/static/images/logo/300/230.jpg&quot;,
&quot;id&quot;: 230,
&quot;fullname&quot;: &quot;奥迪A3(进口)&quot;,
&quot;salestate&quot;: &quot;停销&quot;
},
...
]
},
{
&quot;initial&quot;: &quot;A&quot;,
&quot;name&quot;: &quot;进口奥迪·新能源&quot;,
&quot;id&quot;: 40002,
&quot;list&quot;: [
{
&quot;depth&quot;: 3,
&quot;name&quot;: &quot;奥迪A3 插电混动(进口)&quot;,
&quot;logo&quot;: &quot;http://pic1.jisuapi.cn/car/static/images/logo/300/40003.jpg&quot;,
&quot;id&quot;: 40003,
&quot;fullname&quot;: &quot;奥迪A3 插电混动(进口)&quot;,
&quot;salestate&quot;: &quot;停销&quot;
},
{
&quot;depth&quot;: 3,
&quot;name&quot;: &quot;奥迪Q7 插电混动&quot;,
&quot;logo&quot;: &quot;http://pic1.jisuapi.cn/car/static/images/logo/300/40004.gif&quot;,
&quot;id&quot;: 40004,
&quot;fullname&quot;: &quot;奥迪Q7 插电混动&quot;,
&quot;salestate&quot;: &quot;待销&quot;
},
...
]
},
...
]
}</code></pre>
<h3>失败返回</h3>
<pre><code class="language-json">{
&quot;msg&quot;: &quot;未查询到数据&quot;,
&quot;code&quot;: 701
}</code></pre>
<h3>code返回码说明</h3>
<table>
<thead>
<tr>
<th>code</th>
<th>说明</th>
</tr>
</thead>
<tbody>
<tr>
<td>701</td>
<td>未查询到数据,不计费</td>
</tr>
</tbody>
</table>
<p><a name="model"></a></p>
<h2>根据车系获取车型</h2>
<h3>请求地址</h3>
<p><code>https://api.jumdata.com/vehicle/query/model</code></p>
<h3>请求方式:</h3>
<ul>
<li>GET/POST</li>
</ul>
<h3>请求参数</h3>
<table>
<thead>
<tr>
<th>名称</th>
<th>必须</th>
<th>说明</th>
</tr>
</thead>
<tbody>
<tr>
<td>seriesId</td>
<td>是</td>
<td>车系API返回的车系列表中id</td>
</tr>
<tr>
<td>sort</td>
<td>否</td>
<td>排序。 year - 按年份,yearr - 按年份逆序, productionstate - 按生产状态, productionstater- 按生产状态逆序。默认:year</td>
</tr>
</tbody>
</table>
<p>> 注:公共参数必须,详见公共参数说明</p>
<h3>正确返回</h3>
<pre><code class="language-json">{
&quot;msg&quot;: &quot;成功&quot;,
&quot;code&quot;: 200,
&quot;taskNo&quot;: &quot;09522434433117405247&quot;, // 本次请求号
&quot;data&quot;: {
&quot;depth&quot;: 3, //层级, 1-品牌, 2-子公司, 3-车系, 4-车型
&quot;initial&quot;: &quot;A&quot;, // 首字母
&quot;name&quot;: &quot;奥迪Q5L&quot;, // 车系名称
&quot;logo&quot;: &quot;http://pic1.jisuapi.cn/car/static/images/logo/300/44589.jpg&quot;, // 车系图片
&quot;id&quot;: 44589, // 车系id
&quot;fullname&quot;: &quot;奥迪Q5L&quot;, // 车系全称
&quot;salestate&quot;: &quot;在销&quot;, // 销售状态
&quot;list&quot;: [ // 车系下车型列表
{
&quot;name&quot;: &quot;2020款 40 TFSI 荣享时尚型&quot;, // 车型名称
&quot;id&quot;: 67580, // 车型id
&quot;groupid&quot;: &quot;2838&quot;, // 车型分组
&quot;groupname&quot;: &quot;Q5L 2.0T SUV 双离合 适时四驱 FV6461LAQBG(2018.07-)&quot;, // 车型分组
&quot;sizetype&quot;: &quot;中型SUV&quot;, // 车辆等级
&quot;displacement2&quot;: &quot;2.0&quot;, // 排量 数字
&quot;displacement&quot;: &quot;2.0T&quot;, // 排量
&quot;geartype&quot;: &quot;双离合&quot;, // 变速箱类型
&quot;geartype2&quot;: 1, // 变速箱类型 1自动 2手动
&quot;logo&quot;: &quot;http://pic1.jisuapi.cn/car/static/images/logo/300/67580.jpg&quot;, // 车辆图片
&quot;yeartype&quot;: &quot;2020&quot;, // 年款
&quot;listdate&quot;: &quot;2019-11-26&quot;, // 上市年月
&quot;price&quot;: &quot;41.58万&quot;, // 价格
&quot;productionstate&quot;: &quot;在产&quot;, // 生产状态
&quot;salestate&quot;: &quot;在销&quot; // 销售状态
},
{
&quot;groupid&quot;: &quot;2838&quot;,
&quot;productionstate&quot;: &quot;在产&quot;,
&quot;groupname&quot;: &quot;Q5L 2.0T SUV 双离合 适时四驱 FV6461LAQBG(2018.07-)&quot;,
&quot;listdate&quot;: &quot;2019-11-26&quot;,
&quot;displacement2&quot;: &quot;2.0&quot;,
&quot;yeartype&quot;: &quot;2020&quot;,
&quot;sizetype&quot;: &quot;中型SUV&quot;,
&quot;price&quot;: &quot;38.78万&quot;,
&quot;geartype2&quot;: 1,
&quot;name&quot;: &quot;2020款 40 TFSI 荣享进取型&quot;,
&quot;geartype&quot;: &quot;双离合&quot;,
&quot;logo&quot;: &quot;http://pic1.jisuapi.cn/car/static/images/logo/300/67579.jpg&quot;,
&quot;displacement&quot;: &quot;2.0T&quot;,
&quot;id&quot;: 67579,
&quot;salestate&quot;: &quot;在销&quot;
},
...
]
}
}</code></pre>
<h3>失败返回</h3>
<pre><code class="language-json">{
&quot;msg&quot;: &quot;未查询到数据&quot;,
&quot;code&quot;: 701
}</code></pre>
<h3>code返回码说明</h3>
<table>
<thead>
<tr>
<th>code</th>
<th>说明</th>
</tr>
</thead>
<tbody>
<tr>
<td>701</td>
<td>未查询到数据,不计费</td>
</tr>
</tbody>
</table>
<p><a name="detail"></a></p>
<h2>获取车型详细信息</h2>
<h3>请求地址</h3>
<p><code>https://api.jumdata.com/vehicle/query/detail</code></p>
<h3>请求方式</h3>
<ul>
<li>GET/POST</li>
</ul>
<h3>参数</h3>
<table>
<thead>
<tr>
<th>名称</th>
<th>必须</th>
<th>说明</th>
</tr>
</thead>
<tbody>
<tr>
<td>modelId</td>
<td>是</td>
<td>车型API返回的车型列表中id</td>
</tr>
</tbody>
</table>
<p>> 注:公共参数必须,详见公共参数说明</p>
<h3>正确返回</h3>
<pre><code class="language-json">{
&quot;msg&quot;: &quot;成功&quot;,
&quot;code&quot;: 200,
&quot;taskNo&quot;: &quot;09522434433117405247&quot;, // 本次请求号
&quot;data&quot;: {
&quot;id&quot;: 67580, // 车型id
&quot;name&quot;: &quot;2020款 40 TFSI 荣享时尚型&quot;, // 车型名称
&quot;brandname&quot;: &quot;奥迪&quot;, // 品牌名称
&quot;parentname&quot;: &quot;奥迪Q5L&quot;, // 车型名称
&quot;parentid&quot;: 44589, // 上级(车系)id
&quot;groupid&quot;: &quot;2838&quot;, // 车型分组
&quot;groupname&quot;: &quot;Q5L 2.0T SUV 双离合 适时四驱 FV6461LAQBG(2018.07-)&quot;, // 车型分组
&quot;environmentalstandards&quot;: &quot;国六&quot;, // 环保标准中文
&quot;environmentalstandards2&quot;: &quot;6&quot;, // 环保标准数字
&quot;displacement&quot;: &quot;2.0T&quot;, // 排量中文
&quot;displacement2&quot;: &quot;2.0&quot;, // 排量数字
&quot;drivemode&quot;: &quot;适时四驱&quot;, // 驱动方式中文
&quot;drivemode2&quot;: 4, // 驱动方式数字
&quot;sizetype&quot;: &quot;中型SUV&quot;, // 尺寸类型
&quot;price&quot;: &quot;41.58万&quot;, // 厂商指导价
&quot;logo&quot;: &quot;http://pic1.jisuapi.cn/car/static/images/logo/300/67580.jpg&quot;, // 图片
&quot;initial&quot;: &quot;A&quot;, // 品牌首字母
&quot;productionstate&quot;: &quot;在产&quot;, // 生产状态
&quot;salestate&quot;: &quot;在销&quot;, // 销售状态
&quot;yeartype&quot;: &quot;2020&quot;, // 年款
&quot;listdate&quot;: &quot;2019-11-26&quot;, // 上市日期
&quot;seatnum&quot;: &quot;5&quot;, // 乘员人数 (个)
&quot;depth&quot;: 4, // 层级 4-车型
&quot;geartype&quot;: &quot;双离合&quot;, // 变速箱类型 中文
&quot;geartype2&quot;: 1, // 变速箱类型 1自动 2手动
&quot;gearnum&quot;: &quot;7&quot;, // 档位数 数字
&quot;compartnum&quot;: 2, // 车厢数 数字
&quot;basic&quot;: { // 基本信息
&quot;price&quot;: &quot;41.58万&quot;, // 厂商指导价
&quot;saleprice&quot;: &quot;32.02-41.58万&quot;, // 商家报价
&quot;seatnum&quot;: &quot;5&quot;, // 乘员人数
&quot;mixfuelconsumption&quot;: &quot;7.1&quot;, // 混合工况油耗(L/100km)
&quot;comfuelconsumption&quot;: &quot;7.1&quot;, // 综合工况油耗(L/100km)
&quot;displacement&quot;: &quot;2.0T&quot;, // 排量
&quot;gearbox&quot;: &quot;7挡 双离合&quot;, // 变速箱
&quot;geartype&quot;: &quot;双离合&quot;, // 变速箱类型
&quot;gearnum&quot;: &quot;7&quot;, // 档位数
&quot;maxspeed&quot;: &quot;210&quot;, // 最高车速(km/h)
&quot;officialaccelerationtime100&quot;: &quot;8.6&quot;, // 官方0-100公里加速时间(s)
&quot;warrantypolicy&quot;: &quot;3年或10万公里&quot;, // 保修政策
},
&quot;body&quot;: { // 车体
&quot;color&quot;: &quot;朱鹭白,#ffffff|传奇黑,#000000|季风灰,#3e494c|探索蓝,#2a3381|花剑银,#aaadb0|风尚红,#562833|古铜棕,#3c2717|可汗绿,#424637&quot;, // 车身颜色
&quot;len&quot;: &quot;4765&quot;, // 车长(mm)
&quot;width&quot;: &quot;1893&quot;,// 车宽(mm)
&quot;height&quot;: &quot;1659&quot;, // 车高(mm)
&quot;weight&quot;: &quot;1855&quot;, // 整备质量(kg)
&quot;fullweight&quot;: &quot;2300&quot;, // 满载质量(kg)
&quot;mingroundclearance&quot;: &quot;179&quot;, // 最小离地间隙(mm)
&quot;maxwadingdepth&quot;: &quot;900&quot;, // 最大涉水深度[mm]
&quot;approachangle&quot;: &quot;25.0&quot;, // 接近角(°)
&quot;departureangle&quot;: &quot;21.0&quot;, // 离去角(°)
&quot;rampangle&quot;: &quot;21.0&quot;,// 通过角[°]
&quot;fronttrack&quot;: &quot;&quot;, // 前轮距(mm)
&quot;reartrack&quot;: &quot;&quot;, // 后轮距(mm)
&quot;wheelbase&quot;: &quot;2908&quot;,// 轴距(mm)
&quot;minturndiameter&quot;: &quot;12.2&quot;,// 最小转弯直径[m]
&quot;sportpackage&quot;: &quot;有&quot;, // 运动外观套件
&quot;roofluggagerack&quot;: &quot;&quot;, // 车顶行李箱架
&quot;bodytype&quot;: &quot;SUV&quot;, // 车身型式
&quot;tooftype&quot;: &quot;&quot;, // 车顶型式
&quot;hoodtype&quot;: &quot;&quot;,// 车篷型式
&quot;doornum&quot;: &quot;&quot;, // 车门数(个)
&quot;electricluggage&quot;: &quot;电动开合&quot;, // 电动行李厢
&quot;luggagevolume&quot;: &quot;550&quot;, // 行李厢容积(L)
&quot;luggageopenmode&quot;: &quot;&quot;, // 行李厢打开方式
&quot;inductionluggage&quot;: &quot;&quot;,// 感应行李厢
&quot;luggagemode&quot;: &quot;&quot; // 行李厢盖开合方式
},
&quot;drivingauxiliary&quot;: { // 行车辅助
&quot;reverseimage&quot;: &quot;有&quot;, // 倒车影像
&quot;panoramiccamera&quot;: &quot;&quot;, // 全景摄像头
&quot;reversingradar&quot;: &quot;有&quot;, // 倒车雷达(车后)
&quot;frontparkingradar&quot;: &quot;有&quot;, // 泊车雷达(车前)
&quot;esp&quot;: &quot;有&quot;, // 动态稳定控制系统(ESP)
&quot;eps&quot;: &quot;&quot;, // 随速助力转向调节(EPS)
&quot;tractioncontrol&quot;: &quot;有&quot;, // 牵引力控制(ASR/TCS/TRC/ATC等)
&quot;hillstartassist&quot;: &quot;有&quot;, // 上坡辅助
&quot;remoteparking&quot;: &quot;无&quot;, // 遥控泊车
&quot;activebraking&quot;: &quot;有&quot;, // 主动刹车/主动安全系统
&quot;parallelaid&quot;: &quot;选配&quot;, // 并线辅助
&quot;lanekeep&quot;: &quot;选配&quot;, // 车道保持
&quot;cruisecontrol&quot;: &quot;有&quot;, // 定速巡航
&quot;nightvisionsystem&quot;: &quot;无&quot;, // 夜视系统
&quot;autodriveassist&quot;: &quot;无&quot;, // 自动驾驶辅助
&quot;automaticparking&quot;: &quot;有&quot;, // 自动驻车
&quot;automaticparkingintoplace&quot;: &quot;选配&quot;, // 自动泊车入位
&quot;integralactivesteering&quot;: &quot;无&quot;, // 整体主动转向系统
&quot;blindspotdetection&quot;: &quot;&quot;, // 盲点检测
&quot;fatiguereminder&quot;: &quot;无&quot;, // 疲劳提醒
&quot;ebd&quot;: &quot;有&quot;, // 电子制动力分配系统(EBD)
&quot;brakeassist&quot;: &quot;有&quot;, // 刹车辅助(EBA/BAS/BA/EVA等)
&quot;ldws&quot;: &quot;&quot;, // 车道偏离预警系统
&quot;hilldescent&quot;: &quot;有&quot;, // 陡坡缓降
&quot;drivemodechoose&quot;: &quot;有&quot;, // 驾驶模式选择
&quot;gps&quot;: &quot;GPS导航,实时路况&quot;, // GPS导航系统
&quot;adaptivecruise&quot;: &quot;&quot;, // 自适应巡航
&quot;abs&quot;: &quot;有&quot;, // 刹车防抱死(ABS)
&quot;variablesteering&quot;: &quot;无&quot; // 可变齿比转向
},
&quot;engine&quot;: { // 发动机
&quot;displacement&quot;: &quot;2.0T&quot;, // 排量(L)
&quot;displacementml&quot;: &quot;1984&quot;,// 排量(mL)
&quot;fueltype&quot;: &quot;汽油&quot;, // 燃料类型
&quot;fuelgrade&quot;: &quot;95号&quot;, // 燃油标号
&quot;fueltankcapacity&quot;: &quot;73.0&quot;,// 燃油箱容积(L)
&quot;environmentalstandards&quot;: &quot;国六&quot;, // 环保标准
&quot;fuelmethod&quot;: &quot;混合喷射&quot;, // 供油方式
&quot;intakeform&quot;: &quot;涡轮增压&quot;, // 进气形式
&quot;model&quot;: &quot;DKU&quot;, // 发动机型号
&quot;position&quot;: &quot;&quot;, // 发动机位置
&quot;maxhorsepower&quot;: &quot;190&quot;, // 最大马力(Ps)
&quot;compressionratio&quot;: &quot;&quot;, // 压缩比
&quot;integratedpower&quot;: &quot;297&quot;, // 系统综合功率[kW]
&quot;maxtorque&quot;: &quot;320&quot;, // 最大扭矩(Nm)
&quot;maxtorquespeed&quot;: &quot;1450-4200&quot;, // 最大扭矩转速(rpm)
&quot;maxpower&quot;: &quot;140&quot;, // 最大功率(kW)
&quot;maxpowerspeed&quot;: &quot;4200-6000&quot;,// 最大功率转速(rpm)
&quot;motorpower&quot;: &quot;130&quot;, // 电动机总功率[kW]
&quot;frontmaxpower&quot;: &quot;130&quot;, // 前电动机最大功率[kW]
&quot;rearmaxpower&quot;: &quot;180&quot;, // 后电动机最大功率[kW]
&quot;modeleasyepc2&quot;: &quot;DKW&quot;, //
&quot;modelsohu&quot;: &quot;DKW&quot;,//
&quot;stroke&quot;: &quot;&quot;, // 行程(mm)
&quot;startstopsystem&quot;: &quot;有&quot;, // 启停系统
&quot;nedcmaxmileage&quot;: &quot;无&quot;, // NEDC最大续航里程[km]
&quot;cltcmaxmileage&quot;: &quot;无&quot;, // CLTC纯电续航[km]
&quot;cylinderarrangetype&quot;: &quot;直列&quot;, // 气缸排列型式
&quot;cylinderheadmaterial&quot;: &quot;&quot;, // 缸盖材料
&quot;cylinderbodymaterial&quot;: &quot;&quot;, // 缸体材料
&quot;bore&quot;: &quot;&quot;, // 缸径(mm)
&quot;valvestructure&quot;: &quot;&quot;, // 气门结构
&quot;cylindernum&quot;: &quot;4&quot;, // 气缸数(个)
&quot;valvetrain&quot;: &quot;&quot;, // 每缸气门数(个)
&quot;motornum&quot;: &quot;&quot;, // 驱动电机数
&quot;motorlayout&quot;: &quot;&quot;, // 电机布局
&quot;motortype&quot;: &quot;&quot;, // 电机类型
&quot;motormaxhorsepower&quot;: &quot;&quot;, // 电动机总马力[Ps]
&quot;batterytype&quot;: &quot;&quot;, // 电池类型
&quot;batterybrand&quot;: &quot;&quot;, // 电芯品牌
&quot;motortorque&quot;: &quot;&quot;, //电动机总扭矩[N.m]
&quot;integratedtorque&quot;: &quot;&quot;, //系统综合扭矩[N.m]
&quot;frontmaxtorque&quot;: &quot;&quot;, //前电动机最大扭矩[N.m]
&quot;rearmaxtorque&quot;: &quot;&quot;, //后电动机最大扭矩[N.m]
&quot;batterycapacity&quot;: &quot;&quot;, //电池容量[kwh]
&quot;powerconsumption&quot;: &quot;&quot;, //耗电量[kwh/100km]
&quot;maxmileage&quot;: &quot;&quot;, //最大续航里程[km]
&quot;batterywarranty&quot;: &quot;&quot;, //电池组质保
&quot;batteryfastchargetime&quot;: &quot;&quot;, //电池快充充电时间
&quot;batteryslowchargetime&quot;: &quot;&quot; //电池慢充充电时间
},
&quot;actualtest&quot;: { // 实际测试
&quot;accelerationtime100&quot;: &quot;8.6&quot; // 加速时间(0—100km/h)(s)
},
&quot;gearbox&quot;: { // 变速箱
&quot;gearnum&quot;: &quot;7&quot;, // 档位数
&quot;geartype&quot;: &quot;双离合&quot;, // 变速箱类型
&quot;gearbox&quot;: &quot;7挡 双离合&quot; // 变速箱
},
&quot;chassisbrake&quot;: { // 底盘制动
&quot;drivemode&quot;: &quot;适时四驱&quot;, // 驱动方式
&quot;chassis&quot;: &quot;&quot;,// 底盘型号
&quot;bodystructure&quot;: &quot;承载式&quot;, // 车体结构
&quot;powersteering&quot;: &quot;电动助力&quot;, // 转向助力
&quot;centerdifferentiallock&quot;: &quot;无&quot;, // 中央差速器锁
&quot;frontbraketype&quot;: &quot;通风盘&quot;, // 前制动类型
&quot;rearbraketype&quot;: &quot;通风盘&quot;, // 后制动类型
&quot;parkingbraketype&quot;: &quot;电子驻车&quot;, // 驻车制动类型
&quot;adjustablesuspension&quot;: &quot;无&quot;, // 可调悬挂
&quot;airsuspension&quot;: &quot;&quot;, // 空气悬挂
&quot;frontsuspensiontype&quot;: &quot;多连杆式独立悬架&quot;, // 前悬挂类型
&quot;rearsuspensiontype&quot;: &quot;多连杆式独立悬架&quot; // 后悬挂类型
},
&quot;aircondrefrigerator&quot;: { // 空调/冰箱
&quot;frontairconditioning&quot;: &quot;有&quot;, // 前排空调
&quot;rearairconditioning&quot;: &quot;有&quot;, // 后排独立空调
&quot;reardischargeoutlet&quot;: &quot;&quot;, // 后排出风口
&quot;tempzonecontrol&quot;: &quot;&quot;, // 温度分区控制
&quot;airconditioningcontrolmode&quot;: &quot;加热&quot;, // 空调控制方式
&quot;carrefrigerator&quot;: &quot;无&quot;, // 车载冰箱
&quot;airpurifyingdevice&quot;: &quot;无&quot;, // 车内空气净化装置
&quot;fragrance&quot;: &quot;无&quot;, // 香氛系统
&quot;airconditioning&quot;: &quot;&quot; // 空气调节/花粉过滤
},
&quot;wheel&quot;: { // 车轮
&quot;tirenum&quot;: &quot;4&quot;, // 轮胎个数
&quot;fronttiresize&quot;: &quot;235/55 R19&quot;, // 前轮胎规格
&quot;reartiresize&quot;: &quot;235/55 R19&quot;, // 后轮胎规格
&quot;hubmaterial&quot;: &quot;&quot;, // 轮毂材料
&quot;sparetiretype&quot;: &quot;非全尺寸&quot; // 备胎类型
},
&quot;entcom&quot;: { // 娱乐通讯
&quot;fulllcddashboard&quot;: &quot;有&quot;, // 全液晶仪表盘
&quot;consolelcdscreen&quot;: &quot;有&quot;, // 中控台液晶屏
&quot;lcdscreensize&quot;: &quot;有&quot;, // 液晶屏尺寸
&quot;rearlcdscreen&quot;: &quot;无&quot;, // 后排液晶屏
&quot;drivingrecorder&quot;: &quot;无&quot;, // 车载行车记录仪
&quot;huddisplay&quot;: &quot;选配&quot;, // HUD抬头数字显示
&quot;locationservice&quot;: &quot;&quot;, // 定位互动服务
&quot;builtinharddisk&quot;: &quot;&quot;, // 内置硬盘
&quot;bluetooth&quot;: &quot;蓝牙,wifi&quot;, // 蓝牙系统
&quot;4g&quot;: &quot;有&quot;, // 4G
&quot;cd&quot;: &quot;单碟cd&quot;, // CD
&quot;dvd&quot;: &quot;有&quot;, // DVD
&quot;audiobrand&quot;: &quot;选配&quot;, // 音响品牌
&quot;speakernum&quot;: 0, // 扬声器数量
&quot;externalaudiointerface&quot;: &quot;有&quot;, // 外接音源接口
&quot;phoneconnect&quot;: &quot;CarPlay,Ca&quot;, // 手机互联(Carplay&amp;Android)
&quot;wirelesscharge&quot;: &quot;无&quot;, // 手机无线充电
&quot;gesturecontrol&quot;: &quot;无&quot;, // 手势控制系统
&quot;cartv&quot;: &quot;无&quot;, // 车载电视
&quot;carapp&quot;: &quot;无&quot;, // 车载APP应用
&quot;voicecontrol&quot;: &quot;有&quot;, // 语音控制
&quot;roadrescue&quot;: &quot;有&quot; // 紧急道路救援
},
&quot;doormirror&quot;: { // 门窗/后视镜
&quot;headlightfeature&quot;: &quot;有&quot;, // 大灯功能
&quot;autoheadlight&quot;: &quot;自动开闭,自动转向&quot;, // 自动大灯
&quot;externalmirrorantiglare&quot;: &quot;有&quot;, // 外后视镜自动防眩目
&quot;externalmirrorfolding&quot;: &quot;&quot;, // 外后视镜电动折叠功能
&quot;externalmirroradjustment&quot;: &quot;有&quot;, // 外后视镜电动调节
&quot;externalmirrormemory&quot;: &quot;&quot;, // 外后视镜记忆功能
&quot;externalmirrorheating&quot;: &quot;&quot;, // 外后视镜加热功能
&quot;externalmirrormedia&quot;: &quot;无&quot;, // 流媒体外后视镜
&quot;rearviewmirrormedia&quot;: &quot;无&quot;, // 流媒体内后视镜
&quot;rearviewmirrorantiglare&quot;: &quot;有&quot;, // 内后视镜防眩目功能
&quot;rearmirrorwithturnlamp&quot;: &quot;后雨刷&quot;, // 后视镜带侧转向灯
&quot;openstyle&quot;: &quot;&quot;, // 开门方式
&quot;electricpulldoor&quot;: &quot;&quot;, // 电动吸合门
&quot;electricsuctiondoor&quot;: &quot;无&quot;, // 电吸门
&quot;electricslidingdoor&quot;: &quot;无&quot;, // 电动侧滑门
&quot;rearsidesunshade&quot;: &quot;选配&quot;, // 后排侧遮阳帘
&quot;rearwindowsunshade&quot;: &quot;无&quot;, // 后窗遮阳帘
&quot;privacyglass&quot;: &quot;无&quot;, // 隐私玻璃
&quot;uvinterceptingglass&quot;: &quot;无&quot;, // 防紫外线/隔热玻璃
&quot;sensingwiper&quot;: &quot;感应雨刷&quot;, // 感应雨刷
&quot;frontwiper&quot;: &quot;有&quot;, // 前雨刷器
&quot;rearwiper&quot;: &quot;有&quot;, // 后雨刷器
&quot;skylightstype&quot;: &quot;有&quot;, // 天窗型式
&quot;skylightopeningmode&quot;: &quot;&quot;, // 天窗开合方式
&quot;electricwindow&quot;: &quot;有&quot;, // 电动车窗
&quot;frontelectricwindow&quot;: &quot;有&quot;, // 前电动车窗
&quot;rearelectricwindow&quot;: &quot;有&quot;, // 后电动车窗
&quot;antipinchwindow&quot;: &quot;&quot;, // 电动窗防夹功能
&quot;sunvisormirror&quot;: &quot;有&quot;, // 遮阳板化妆镜
&quot;roofrack&quot;: &quot;有&quot;, // 车顶行李架
&quot;rearwing&quot;: &quot;无&quot;, // 尾翼/扰流板
},
&quot;seat&quot;: { // 座椅
&quot;frontseatfunction&quot;: &quot;有&quot;, // 前排座椅功能
&quot;rearseatfunction&quot;: &quot;选配&quot;, // 后排座椅功能
&quot;seatheightadjustment&quot;: &quot;&quot;, // 座椅高低调节
&quot;electricseatmemory&quot;: &quot;&quot;, // 电动座椅记忆
&quot;driverseatelectricadjustment&quot;: &quot;有&quot;, // 主座椅电动调节
&quot;driverseatadjustmentmode&quot;: &quot;有&quot;, // 驾驶座座椅调节方式
&quot;frontseatheadrestadjustment&quot;: &quot;&quot;, // 前座椅头枕调节
&quot;driverseatshouldersupportadjustment&quot;: &quot;&quot;, // 驾驶座肩部支撑调节
&quot;auxiliaryseatelectricadjustment&quot;: &quot;有&quot;, // 副座椅电动调节
&quot;auxiliaryseatadjustmentmode&quot;: &quot;有&quot;, // 副驾驶座椅调节方式
&quot;rearseatadjustmentmode&quot;: &quot;&quot;, // 后排座椅调节方式
&quot;secondrowseatelectricadjustment&quot;: &quot;无&quot;, // 第二排座椅电动调节
&quot;secondrowseatadjustment&quot;: &quot;无&quot;, // 第二排座椅调节方式
&quot;sportseat&quot;: &quot;无&quot;, // 运动座椅
&quot;seatmaterial&quot;: &quot;有&quot;, // 座椅材料
&quot;driverseatlumbarsupportadjustment&quot;: &quot;&quot;, // 驾驶座腰部支撑调节
&quot;childseatfixdevice&quot;: &quot;有&quot;, // 儿童安全座椅固定装置
&quot;seatheating&quot;: &quot;&quot;, // 座椅加热
&quot;seatventilation&quot;: &quot;&quot;, // 座椅通风
&quot;seatmassage&quot;: &quot;&quot;, // 座椅按摩功能
&quot;rearseatreclineproportion&quot;: &quot;&quot;, // 后排座位放倒比例
&quot;rearseatangleadjustment&quot;: &quot;&quot;, // 后排座椅角度调节
&quot;thirdrowseat&quot;: &quot;无&quot;, // 第三排座椅
&quot;frontseatcenterarmrest&quot;: &quot;有&quot;, // 前座中央扶手
&quot;rearseatcenterarmrest&quot;: &quot;有&quot; // 后座中央扶手
},
&quot;internalconfig&quot;: { // 内部配置
&quot;interiorcolor&quot;: &quot;花岗岩灰/岩石灰,#&quot;, // 内饰颜色
&quot;interiormaterial&quot;: &quot;有&quot;, // 内饰材质
&quot;steeringwheelmaterial&quot;: &quot;有&quot;, // 方向盘表面材料
&quot;steeringwheelmultifunction&quot;: &quot;有&quot;, // 多功能方向盘
&quot;steeringwheelbeforeadjustment&quot;: &quot;&quot;, // 方向盘前后调节
&quot;steeringwheelupadjustment&quot;: &quot;&quot;, // 方向盘上下调节
&quot;steeringwheelheating&quot;: &quot;选配&quot;, // 方向盘加热
&quot;steeringwheelmemory&quot;: &quot;&quot;, // 方向盘记忆设置
&quot;steeringwheeladjustmentmode&quot;: &quot;有&quot;, // 方向盘调节方式
&quot;steeringwheelshift&quot;: &quot;有&quot; , // 方向盘换挡
&quot;rearcupholder&quot;: &quot;有&quot;, // 后排杯架
&quot;supplyvoltage&quot;: &quot;无&quot;, // 车内电源电压
&quot;activenoisereduction&quot;: &quot;无&quot;, // 主动降噪
&quot;computerscreen&quot;: &quot;有&quot; // 行车电脑显示屏
},
&quot;light&quot;: { // 灯光
&quot;headlighttype&quot;: &quot;LED&quot;, // 前大灯类型
&quot;optionalheadlighttype&quot;: &quot;&quot;, // 选配前大灯类型
&quot;headlightilluminationadjustment&quot;: &quot;&quot;, // 前大灯照射范围调整
&quot;headlightautomaticclean&quot;: &quot;有&quot;, // 前大灯自动清洗功能
&quot;headlightdynamicsteering&quot;: &quot;&quot;, // 前大灯随动转向
&quot;headlightautomaticopen&quot;: &quot;&quot;, // 前大灯自动开闭
&quot;headlightdelayoff&quot;: &quot;&quot;, // 前大灯延时关闭
&quot;daytimerunninglight&quot;: &quot;有&quot;, // 日间行车灯
&quot;leddaytimerunninglight&quot;: &quot;有&quot;, // LED日间行车灯
&quot;ledtaillight&quot;: &quot;&quot;, // LED尾灯
&quot;lightsteeringassist&quot;: &quot;&quot;, // 转向辅助灯
&quot;headlightdimming&quot;: &quot;&quot;, // 会车前灯防眩目功能
&quot;frontfoglight&quot;: &quot;无&quot;, // 前雾灯
&quot;interiorairlight&quot;: &quot;有&quot;, // 车内氛围灯
&quot;readinglight&quot;: &quot;&quot; // 阅读灯
},
&quot;safe&quot;: { // 安全配置
&quot;airbagdrivingposition&quot;: &quot;有&quot;, // 驾驶位安全气囊
&quot;airbagfrontpassenger&quot;: &quot;有&quot;, // 副驾驶位安全气囊
&quot;airbagfrontside&quot;: &quot;有&quot;, // 前排侧安全气囊
&quot;airbagfronthead&quot;: &quot;&quot;, // 前排头部气囊(气帘)
&quot;airbagrearside&quot;: &quot;选配&quot;, // 后排侧安全气囊
&quot;rearcentralairbag&quot;: &quot;无&quot;, // 后排中央气囊
&quot;airbagrearhead&quot;: &quot;&quot;, // 后排头部气囊(气帘
&quot;sideaircurtain&quot;: &quot;有&quot;, // 侧安全气帘
&quot;airbagknee&quot;: &quot;无&quot;, // 膝部气囊
&quot;safetybeltprompt&quot;: &quot;&quot;, // 安全带未系提示
&quot;seatbeltairbag&quot;: &quot;无&quot;, // 安全带气囊
&quot;safetybeltlimiting&quot;: &quot;&quot;, // 安全带限力功能
&quot;safetybeltpretightening&quot;: &quot;&quot;, // 安全带预收紧功能
&quot;frontsafetybeltadjustment&quot;: &quot;&quot;, // 前安全带调节
&quot;rearsafetybelt&quot;: &quot;&quot;, // 后排安全带
&quot;brakeassist&quot;: &quot;有&quot;, // 刹车辅助(EBA/BAS/BA/EVA等)
&quot;tirepressuremonitoring&quot;: &quot;有&quot;, // 胎压监测装置
&quot;zeropressurecontinued&quot;: &quot;无&quot;, // 零压续行(零胎压继续行驶)
&quot;keylessentry&quot;: &quot;&quot;, // 无钥匙进入系统
&quot;keylessstart&quot;: &quot;&quot;, // 无钥匙启动系统
&quot;childlock&quot;: &quot;&quot;, // 儿童锁
&quot;smartkey&quot;: &quot;有&quot;, // 智能钥匙
&quot;remotekey&quot;: &quot;遥控中控&quot;, // 遥控钥匙
&quot;remotecontrol&quot;: &quot;无&quot;, // 远程遥控功能
&quot;engineantitheft&quot;: &quot;&quot;, // 发动机电子防盗
&quot;centrallocking&quot;: &quot;有&quot; // 中控门锁
}
}
}</code></pre>
<h3>失败返回</h3>
<pre><code class="language-json">{
&quot;msg&quot;: &quot;车型ID错误&quot;,
&quot;code&quot;: 400,
&quot;taskNo&quot;: &quot;55428257646567295194&quot;
}</code></pre>
<p><a name="keyword"></a></p>
<h2>车型搜索</h2>
<h3>请求地址</h3>
<p><code>https://api.jumdata.com/vehicle/query/keyword</code></p>
<h3>请求方式</h3>
<ul>
<li>GET/POST</li>
</ul>
<h3>参数</h3>
<table>
<thead>
<tr>
<th>名称</th>
<th>必须</th>
<th>说明</th>
</tr>
</thead>
<tbody>
<tr>
<td>keyword</td>
<td>是</td>
<td>关键词</td>
</tr>
</tbody>
</table>
<p>> 注:公共参数必须,详见公共参数说明</p>
<h3>成功返回</h3>
<pre><code>{
&quot;msg&quot;: &quot;成功&quot;,
&quot;code&quot;: 200,
&quot;taskNo&quot;: &quot;83467456101890553457&quot;,
&quot;charge&quot;: true,
&quot;data&quot;: {
&quot;total&quot;: 10,
&quot;keyword&quot;: &quot;宝马3系&quot;,
&quot;list&quot;: [
{
&quot;id&quot;: 5512, // 车型Id,可用该字段调用车型详情接口,查询车型详细数据
&quot;brandname&quot;: &quot;宝马&quot;, // 品牌名称
&quot;parentname&quot;: &quot;宝马3系(进口)&quot;, // 车系名称
&quot;name&quot;: &quot;宝马 宝马3系(进口) 2015款 ActiveHybrid 3&quot;, // 车型名称
&quot;listdate&quot;: &quot;2014-09-10&quot;, // 上市年月
&quot;yeartype&quot;: &quot;2015&quot;, // 年款
&quot;sizetype&quot;: &quot;中型车&quot;, // 车辆等级
&quot;price&quot;: &quot;66.80万&quot;, // 厂商指导价
&quot;logo&quot;: &quot;https://img.jumdata.com/vehicle-query/logo/202109/20210918/5512.jpg&quot;, // 车型图片
&quot;productionstate&quot;: &quot;停产&quot;, // 生产状态
&quot;salestate&quot;: &quot;停销&quot; // 销售状态
},
...
]
}
}</code></pre>
<h3>失败返回</h3>
<pre><code class="language-json">{
&quot;msg&quot;: &quot;未查询到数据&quot;,
&quot;code&quot;: 701,
&quot;taskNo&quot;: &quot;55428257646567295194&quot;
}</code></pre>