List all chat sessions for current user
Returns list of sessions with last activity and message counts
cURL
curl --request GET \ --url https://api.superdocs.app/v1/users/me/sessions \ --header 'Authorization: Bearer <token>'
[ { "session_id": "<string>", "message_count": 123, "last_message_at": "<string>" } ]
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Successful Response
Unique session identifier.
Total number of messages in this session.
ISO 8601 timestamp of the most recent message.