文档
测试

统计数据

GET
/v1/vehicle/:vehicle_id/statistics

接口描述

task 跑完情况下才会汇总 车辆在作业中打点数据不会累加,列表是按天维度聚合

请求参数

参数名
类型
描述
必填
start_timestamp
int
必选,开始时间戳,单位秒
必填
end_timestamp
int
必选,结束时间戳,单位秒
必填

响应参数

参数名
类型
描述
必填
code
int
示例:0
必填
message
string
示例:
必填
data
object
必填
list
array
列表
必填
date
string
开始时间戳
必填
mileage
object
驾驶里程
必填
auto_drive
float
自动驾驶里程,单位米,示例:0
必填
manual_drive
float
手动驾驶里程,单位米,示例:0
必填
total
float
总里程,单位米,示例:0
必填
duration
object
驾驶时间
必填
auto_drive
int
自动驾驶时间,单位秒, 示例:6400
必填
manual_drive
int
手动驾驶时间,单位秒,示例:200
必填
total
int
总驾驶时间,单位秒,示例:6600
必填

说明 / 示例

curl请求示例: curl -s "https://open-data.autowise.tech/v1/vehicle/awv3_4/statistics?start_timestamp=1700124559&end_timestamp=1700824559&access_token=xxxx"