预估时间(ETA)
功能: 司机到达出发地的预估时间,无服务则返回空
支持运力: 所有车型
资源URL
GET: v1/estimates/time
请求参数:
参数名 | 类型 | 描述 |
---|---|---|
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/estimates/time?lat=40.058922&lng=116.312615'
返回参数说明:
参数名 | 类型 | 说明 |
---|---|---|
product_type | string | 产品类型 |
ride_type | string | 运力类型 |
estimate_eta | int | 预估接驾时间,单位:秒 |
返回示例:
成功:http status 200
失败:http status 非200
[
{
"product_type": "private-car",
"ride_type": "compact",
"estimate_eta": 174
}
]