v62

latestOpenAPI 3.0.3raw.githubusercontent.com2026-07-31136116265.6 KB
device

Get a single journey for a device along with its events. The events array is paginated via pageSize / pageNum; use journey.has_more to detect additional pages.

get/v1/projects/{projectOrProductUID}/devices/{deviceUID}/journeys/{journeyID}

Path parameters

projectOrProductUIDstring required
deviceUIDstring required
journeyIDinteger required

Identifier of the journey, taken from the numeric journey field in the event body (a Unix timestamp marking the start of the journey).

Query parameters

pageSizeinteger
pageNuminteger

Response

Successful operation

end_datestring date-time required

Latest event time within the journey.

journey_idinteger required

Identifier of the journey.

start_datestring date-time required

Earliest event time within the journey.

Example response

{
  "journey": {
    "events": [
      {
        "bars": 2,
        "best_location_when": 1652709545,
        "moved": 7,
        "rsrp": -91,
        "rsrq": -13,
        "rssi": -72,
        "sinr": 18,
        "tower_when": 1669667691,
        "tri_points": 6,
        "tri_when": 1652709545,
        "updates": 1,
        "when": 1656010061,
        "when_ms": 1656010061123,
        "where_when": 1652709545
      }
    ]
  }
}