计价规则
功能: 产品的计价标准
支持运力: private-car,express-car
资源URL:
GET: v1/product/standard
请求参数:
参数名 | 类型 | 描述 |
---|---|---|
lat | float | 起点纬度 |
lng | float | 起点经度 |
product_type | string(可选) | 产品类型 |
ride_type | string(可选) | 运力类型 |
map_type | string(可选) | 坐标系类型,默认soso,支持坐标系见备注 |
请求示例:
curl -X GET
-H "Content-Type: application/x-www-form-urlencode"
-H 'Authorization: Bearer domain|{access_token}'
'https://api.xiaojukeji.com/v1/product/standard?lat=40.058922&lng=116.312615&ride_type=compact&product_type=private-car
返回参数说明:
参数 | 类型 | 说明 |
---|---|---|
product_type | string | 产品类型 |
ride_type | string | 运力类型 |
price_details | array | 计价规则 |
distance_unit | string | 路程计价单位 |
cost_per_minute | int | 每分钟价格,单位:分 |
minimum | int | 最低消费,单位:分 |
cost_per_distance | int | 每单位里程费用,单位:分 |
base | int | 起步价,单位:分 |
cancellation_fee | int | 行程接单后的取消费用(如果有责取消),单位:分 |
currency_code | string | 货币类型(CNY,人民币) |
返回示例:
成功:http status 200
失败:http status 非200
[
{
"product_type": "private-car",
"ride_type": "compact",
"price_details": {
"distance_unit": "km",
"cost_per_minute": 0,
"minimum": 1200,
"cost_per_distance": 200,
"base": 1200,
"cancellation_fee": 500,
"currency_code": "CNY"
}
}
]
注: 取消费非固定值,会随时间变化,且和用户历史行为相关