Create Clerk session
Create a new session for a user in a connected Clerk application.
← All Clerk endpoints · Capability overview
/v1/clerk/sessionshttps://api.vee3.io/v1/clerk/sessions
Create a new session for a user 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.create_sessionParameters2 fields
clerk_instance_idstringOptionalClerk instance id (ins_...) from clerk.get_connected_accounts. Omit to use the default connected account.
user_idstringRequiredClerk user id (user_...) to create a session for.
Response8 fields
idstringClerk 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.
client_idstringClerk client id associated with this session.
created_atintegerUnix timestamp in milliseconds when the session was created.
updated_atintegerUnix timestamp in milliseconds when the session was last updated.
HTTP errors: clerk_connection_required, clerk_connection_not_found, clerk_connection_invalid, validation_error, unauthorized, payment_required