curl --request GET \
--url https://api.example.com/api/users/{user_id}{
"id": "<string>",
"email": "<string>",
"username": "<string>",
"role": "<string>",
"name": "<string>",
"profile_image_url": "<string>",
"profile_banner_image_url": "<string>",
"bio": "<string>",
"gender": "<string>",
"date_of_birth": "<string>",
"timezone": "<string>",
"presence_state": "<string>",
"status_emoji": "<string>",
"status_message": "<string>",
"status_expires_at": 123,
"info": {},
"settings": {
"ui": {}
},
"oauth": {},
"scim": {},
"last_active_at": 123,
"updated_at": 123,
"created_at": 123,
"groups": [
{
"id": "<string>",
"name": "<string>"
}
],
"is_active": true
}curl --request GET \
--url https://api.example.com/api/users/{user_id}{
"id": "<string>",
"email": "<string>",
"username": "<string>",
"role": "<string>",
"name": "<string>",
"profile_image_url": "<string>",
"profile_banner_image_url": "<string>",
"bio": "<string>",
"gender": "<string>",
"date_of_birth": "<string>",
"timezone": "<string>",
"presence_state": "<string>",
"status_emoji": "<string>",
"status_message": "<string>",
"status_expires_at": 123,
"info": {},
"settings": {
"ui": {}
},
"oauth": {},
"scim": {},
"last_active_at": 123,
"updated_at": 123,
"created_at": 123,
"groups": [
{
"id": "<string>",
"name": "<string>"
}
],
"is_active": true
}Retrieves detailed information about a specific user, including their groups and active status.Documentation Index
Fetch the complete documentation index at: https://mintlify.com/open-webui/open-webui/llms.txt
Use this file to discover all available pages before exploring further.
shared-{chat_id} format to retrieve the user from a shared chat.admin, user, or pendingcurl -X GET "https://your-domain.com/api/users/user-123" \
-H "Authorization: Bearer YOUR_TOKEN"
{
"id": "user-123",
"email": "user@example.com",
"username": "johndoe",
"role": "user",
"name": "John Doe",
"profile_image_url": "/api/v1/users/user-123/profile/image",
"bio": "Software developer",
"timezone": "America/New_York",
"status_emoji": "💻",
"status_message": "Working on a project",
"last_active_at": 1709424000,
"updated_at": 1709424000,
"created_at": 1709337600,
"groups": [
{
"id": "group-1",
"name": "Engineering"
},
{
"id": "group-2",
"name": "Admins"
}
],
"is_active": true
}
shared-{chat_id} format