RoscoLive API v1.0(v2.37.0)
  1. Metadata
RoscoLive API v1.0(v2.37.0)
  • Company
    • Create a company
      PUT
    • Get a company by ID
      GET
    • Update company
      POST
    • Get a company
      GET
    • Get companies
      GET
  • Device
    • Geotab
      • Get device by geotab device serial number
    • Update a device settings
      POST
    • Get reported DTCs for devices
      GET
    • Get company devices
      GET
    • Search devices
      GET
    • Play in-cab audible alert sound for device
      POST
    • Get list of trip dates for device
      GET
    • Get list of trips for passed device and date
      GET
    • Get a device
      GET
    • Get devices for all companies available for user
      GET
    • Get available video list for date
      GET
    • Get device list for multiple companies
      GET
  • Driver Scoring / Coaching
    • Get driver scores
      GET
    • Get unknown driver trips
      GET
  • Event
    • Request Custom Event
      PUT
    • Get Company Events
      GET
    • Send an event
      PUT
    • Get snapshot/location of event
      GET
    • Get Device Events for Period
      GET
    • Request custom video from device
      PUT
    • Get event filters list for date range in company
      GET
  • Group
    • Get devices of a group
  • Metadata
    • Get metadata of a device
      GET
    • Get metadata of devices
      GET
    • Get alerts of a driver
      GET
  1. Metadata

Get metadata of a device

GET
/partners/devices/{device_id}/metadata
Gets metadata of a device in a specific period.
The default end_ts is start_ts + 24 hours, if the duration is longer than 24 hours, the end_ts will be regulated to start_ts + 24 hours.

Request

Path Params

Query Params

Responses

🟢200Success
application/json
Body

🟠401Login Required
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET '/partners/devices//metadata?start_ts=&end_ts='
Response Response Example
200 - Success
{
    "meta": {
        "code": 200
    },
    "response": {
        "metadata": [
            {
                "alarm_active": 1,
                "asset_id": null,
                "event_id": null,
                "timestamp": "Thu, 23 Oct 2025 23:16:24 GMT",
                "type": "HarshBraking"
            },
            {
                "dir": 348,
                "dst": 11319,
                "key": "1",
                "latitude": 40.6242332458496,
                "longitude": -73.9090270996094,
                "speed": 1.864,
                "timestamp": "Thu, 23 Oct 2025 23:16:58 GMT",
                "type": "Gps"
            },
            {
                "dir": 0,
                "dst": 11319,
                "key": "1",
                "latitude": 40.6242370605469,
                "longitude": -73.9090270996094,
                "speed": 0,
                "timestamp": "Thu, 23 Oct 2025 23:17:03 GMT",
                "type": "Gps"
            }
        ]
    },
    "result": "OK"
}
Modified at 2025-10-24 14:20:25
Previous
Get devices of a group
Next
Get metadata of devices
Built with