Get device telemetry

The following pieces of telemetry are currently supported:

  • Power (External, Internal)
  • Connectivity (GPS, GSM)
  • IO (Inputs, Output)
  • Sensors (External sensor information)

Example

Below is an example response from the telemetry endpoint:


{
    "id": "cc11a6ac-3758-44ce-9cb0-b9414be36b7e",
    "power": {
       "external": {
           "supply": 12000
       },
       "internal": {
           "supply": 4145,
           "percentage": 95,
           "charging": false
       }
    },
    "connectivity": {
       "gps": {
           "satellites": 8,
           "signalQuality": 32,
           "latestFixTime": "2023-08-02T19:07:40Z"
       },
       "gsm": {
           "signalQuality": 4,
           "networkTechnology": "NW_TECH_4G"
       },
       "transmissions": {
           "latestReceptionTime": "2023-08-02T19:08:50Z"
       }
    },
    "io": {
       "input1": {
           "active": true,
           "voltage": 12108
       },
       "input2": {
           "active": true,
           "voltage": 12056
       },
       "input3": {
           "active": false,
           "voltage": 0
       },
       "input4": {
           "active": false,
           "voltage": 0
       },
       "output1": {
           "active": false,
           "loadDetect": true
       }
    },
    "sensor": {
       "temperature1": {
          "value": 20.5
       },
       "temperature2": {
          "value": 12.7
       },
       "light": {
           "active": false
       }
    }
}

➡️

OpenAPI Specification for the Telematics Device API domain

Get the OpenAPI Specification (formerly Swagger), which is a standardized format that describes the functionalities, endpoints, parameters, and data models of this API in a JSON file here.

Language
Authorization
Bearer
JWT
Click Try It! to start a request and see the response here!