V1Users
Get users by IDs
Returns user info (name, picture, color) for Liveblocks collaboration.
Returns user info (name, picture, color) for Liveblocks collaboration.
Authorization
cookieAuth better-auth.session_token<token>
Session cookie set by Better Auth. Login via the app to obtain.
In: cookie
Query Parameters
ids*string
Comma-separated user IDs
Response Body
application/json
curl -X GET "http://localhost:3002/v1/users?ids=id1%2Cid2"{
"data": [
{
"name": "string",
"picture": "string",
"color": "string"
}
]
}