运力类型
功能: 根据起点位置,获取可服务的运力类型
资源URL:
GET: v1/products
车型关系:
product_type | ride_type | 描述 |
---|---|---|
private-car(滴滴专车) | compact | 舒适 |
premium | 商务 | |
luxury | 豪华 | |
express-car(滴滴快车) | express | 快车 |
superior | 优享 | |
taxi(滴滴出租车) | taxi | 出租车 |
请求参数:
参数 | 类型 | 描述 |
---|---|---|
lat | float | 当前纬度 |
lng | float | 当前经度 |
product_type | string(可选) | 产品类型 |
ride_type | string(可选) | 运力类型 |
map_type | string(可选) | 坐标系类型,默认soso,支持坐标系见备注 |
请求示例:
curl -X GET
-H "Content-Type: application/x-www-form-urlencoded"
-H 'Authorization: Bearer domain|{access_token}'
'https://api.xiaojukeji.com/v1/products?lat=40.058922&lng=116.312615&product_type=private-car&ride_type=compact'
返回参数说明:
参数名 | 类型 | 说明 |
---|---|---|
product_type | string | 产品类型 |
ride_type | string | 运力类型 |
display_name | string | 英文显示名 |
display_name_cn | string | 中文显示名 |
seats | int | 座位数量 |
car_type | int | 车类型 |
image_url | string | 车型图片地址 |
返回示例:
成功:http status 200
失败:http status 非200
{
"products": [
{
"product_type": "private-car",
"ride_type": "compact",
"display_name": "Didi low-cost",
"display_name_cn": "滴滴专车(舒适型)",
"seats": 4,
"car_type": 2,
"image_url": "https://static.xiaojukeji.com/gulfstream/upload/2014/20141028/carLevel_100/car_comfort_small@2x.png"
},
{
"product_type": "private-car",
"ride_type": "luxury",
"display_name": "Didi luxury",
"display_name_cn": "滴滴专车(豪华型)",
"seats": 4,
"car_type": 4,
"image_url": "https://static.xiaojukeji.com/gulfstream/upload/2014/20141028/carLevel_200/car_luxury_small@2x.png"
},
{
"product_type": "private-car",
"ride_type": "premium",
"display_name": "Didi business",
"display_name_cn": "滴滴专车(商务型)",
"seats": 6,
"car_type": 16,
"image_url": "https://static.xiaojukeji.com/gulfstream/upload/2014/20141028/carLevel_400/car_business_small@2x.png"
}
]
}