# 百度汽车榜
>[danger] 免费接口,每日100次免费调用
## 接口调用([调用须知](https://www.kancloud.cn/chimney/cn-api/2491302))
>[info] 百度汽车top30数据,系统每小时更新一次。
## 请求地址
~~~
GET https://api.cnbook.top/baidu/top/car
~~~
## 请求参数
| 名称 | 必填 | 类型 | 说明 |
| --- | --- | --- | --- |
| category | 否 | string | 类型,取值:全部(默认),SUV,新能源,跑车,MPV |
## 返回结果说明
| 名称 | 类型 | 示例值 | 说明 |
| --- | --- | --- | --- |
| detail | string | https://www.baidu.com/s?wd=%E5%A5%A5%E5%BE%B7%E8%B5%9B+%E6%B1%BD%E8%BD%A6&rsv_dl=fyb_car_mpv | 链接 |
| cover | string | https://fyb-1.cdn.bcebos.com/fyb-1/20211012/0185b8a5d0b5147e8b7124f65bdb351e?x-bce-process=image/resize,m_fill,w_256,h_170 | 封面 |
| rank | int | 1 | 排名 |
| index | int | 5867 | 热搜指数 |
| title | string | 奥德赛 | 汽车名称 |
| price | string | 22.9-37.6万 | 价格 |
| level | string | 中型MPV | 级别 |
| category | string | MPV | 类型 |
#### 返回示例
~~~
{
"code": 0,
"message": "success",
"data": [
{
"detail": "https://www.baidu.com/s?wd=%E5%A5%A5%E5%BE%B7%E8%B5%9B+%E6%B1%BD%E8%BD%A6&rsv_dl=fyb_car_mpv",
"cover": "https://fyb-1.cdn.bcebos.com/fyb-1/20211012/0185b8a5d0b5147e8b7124f65bdb351e?x-bce-process=image/resize,m_fill,w_256,h_170",
"rank": 1,
"index": 5867,
"title": "奥德赛",
"price": "22.9-37.6万",
"level": "中型MPV",
"category": "MPV"
},
{
"detail": "https://www.baidu.com/s?wd=%E4%BC%A0%E7%A5%BAM8+%E6%B1%BD%E8%BD%A6&rsv_dl=fyb_car_mpv",
"cover": "https://fyb-1.cdn.bcebos.com/fyb-1/20211012/0c1e4e0269b4c68e5db70b3f67c1b357?x-bce-process=image/resize,m_fill,w_256,h_170",
"rank": 2,
"index": 5483,
"title": "传祺M8",
"price": "17.9-36.9万",
"level": "中大型MPV",
"category": "MPV"
}
],
"trace": 1634095195
}
~~~