curl --request GET \
--url http://co-mind-platform-host/v1/auth/me \
--header 'Authorization: Bearer <token>'{
"id": "user_abc123",
"email": "user@example.com",
"username": "johndoe",
"confirmed": true,
"created_at": "2023-11-07T05:31:56Z"
}Get the authenticated user’s information.
curl --request GET \
--url http://co-mind-platform-host/v1/auth/me \
--header 'Authorization: Bearer <token>'{
"id": "user_abc123",
"email": "user@example.com",
"username": "johndoe",
"confirmed": true,
"created_at": "2023-11-07T05:31:56Z"
}Bearer token authentication. Supports two token types:
POST /v1/auth/loginPOST /v1/api-tokens, format: cmnd_<tokenId>.<secret>