Get All Positions

Get latest positions for all devices

Get Device Positions

GET {{baseUrl}}/positions

{
    "status": true,
    "message": "Device positions retrieved successfully",
    "data": [
        {
            "deviceId": "6166b0be3dd87d46743a7ca2",
            "name": "Tracker 1", 
            "latitude": 6.437608333, 
            "longitude": 3.49107, 
            "altitude": 0, 
            "speed": 10, 
            "inMotion": true,
            "lastUpdatedTime": "2025-01-13T11:31:53.401+00:00"
        },
        //Mobile phone tracking will return only latitude and longitude attributes
        {
            "id": "61a72922fd4492a136466941",            
            "name": "Musa phone", 
            "latitude": 6.437608333, 
            "longitude": 3.49107, 
            "lastUpdatedTime": "2025-01-13T11:31:53.401+00:00"
        }
    ]
}

Last updated

Was this helpful?