Retrieve all active device sessions for the authenticated user.
GEThttps://api.aitronos.com/v1/user/devices
Array of device session objects with activity information.
Bash
- Bash
- Python
- JavaScript
curl -X GET \
"https://api.aitronos.com/v1/user/devices" \
-H "X-API-Key: $FREDDY_API_KEY"Response:
[
{
"id": "dsess_abc123",
"device_id": "device-123",
"device_name": "Chrome Browser",
"platform": "web",
"operating_system": "macOS",
"location": "San Francisco, CA",
"is_active": true,
"last_used_at": "2025-11-19T14:00:00Z",
"created_at": "2025-11-15T08:00:00Z"
},
{
"id": "dsess_def456",
"device_id": "device-456",
"device_name": "iPhone",
"platform": "ios",
"operating_system": "iOS 17",
"location": "New York, NY",
"is_active": true,
"last_used_at": "2025-11-19T12:30:00Z",
"created_at": "2025-11-10T10:00:00Z"
}
]