Read device sessions and task history
List ShareAI device sessions and inspect a session’s task history using a device-specific Remote Control token.
On this page
https://api.shareai.now/api/v1/console/provider/{provider_uuid}/device-management/{device_uuid}/remote/sessionsList sessions for this device relationship.
- Base URL
https://api.shareai.now- Authentication
- HTTP Basic: provider UUID and device access token


Use page, limit and order for session pagination. Read the returned page information and identifiers; do not assume every session fits in the first page.
cURL
curl --fail-with-body \
"https://api.shareai.now/api/v1/console/provider/$PROVIDER_UUID/device-management/$DEVICE_UUID/remote/sessions?page=1&limit=20&order=desc" \
-u "$PROVIDER_UUID:$DEVICE_ACCESS_TOKEN"
Inspect one session#
https://api.shareai.now/api/v1/console/provider/{provider_uuid}/device-management/{device_uuid}/remote/session/{session_id}Read a session and its paginated tasks.
- Base URL
https://api.shareai.now- Authentication
- HTTP Basic: provider UUID and device access token
cURL
curl --fail-with-body \
"https://api.shareai.now/api/v1/console/provider/$PROVIDER_UUID/device-management/$DEVICE_UUID/remote/session/$SESSION_ID?tasks_page=1&tasks_limit=20&tasks_order=desc" \
-u "$PROVIDER_UUID:$DEVICE_ACCESS_TOKEN"
Keep session and task pagination separate#
The detail endpoint uses tasks_page, tasks_limit and tasks_order for its task list. Start from a session identifier returned for the same device; a session from another relationship is not accessible with this credential.
Operational use#
Use sessions to correlate a connectivity interval with observed activity. An empty page can mean no activity in that interval. It is not proof that the device is permanently offline or that every model is unavailable.
Access prerequisites#
The same connection and Remote Control checks apply to reads and sharing commands. Review Device API authentication when a request returns 403.
Last updated September 15, 2026