List Clerk sessions
List sessions in a connected Clerk application.
← All Clerk endpoints · Capability overview
/v1/clerk/sessionshttps://api.vee3.io/v1/clerk/sessions
List sessions in a connected Clerk application.
Authorization
Send your API key in the Authorization header:
Authorization: Bearer YOUR_API_KEY
MCP
The same capability is available as an MCP tool on Vee3 hosted MCP.
Tool name
clerk.list_sessionsParameters6 fields
clerk_instance_idstringOptionalClerk instance id (ins_...) from clerk.get_connected_accounts. Omit to use the default connected account.
user_idstringOptionalFilter sessions to those belonging to this Clerk user id (user_...). Clerk requires user_id or client_id when listing sessions; pass user_id here.
client_idstringOptionalFilter sessions to those belonging to this Clerk client id (client_...).
statusstringOptionalFilter sessions by status. Accepted values: abandoned, active, ended, expired, removed, replaced, revoked.
limitintegerOptionalMaximum number of sessions to return (1–500).
Default: 10 · min 1, max 500
offsetintegerOptionalNumber of sessions to skip before returning results.
Default: 0 · min 0
Response7 fields
sessionsarrayitems5 fieldsSessions returned for the requested page.
sessionsarrayitemsidstringClerk session id (sess_...).
user_idstringClerk user id (user_...) that owns this session.
statusstringCurrent status of the session.
last_active_atintegerUnix timestamp in milliseconds of the last activity on this session.
expire_atintegerUnix timestamp in milliseconds when this session expires.
total_countintegerTotal number of sessions returned.
HTTP errors: clerk_connection_required, clerk_connection_not_found, clerk_connection_invalid, validation_error, unauthorized, payment_required