curl --request GET \
--url https://api.example.com/api/users/me{
"id": "<string>",
"is_active": true,
"is_superuser": true,
"is_verified": true,
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z",
"email": "<string>",
"first_name": "<string>",
"last_name": "<string>"
}Returns the authenticated caller’s profile. Use this at the start of a session to ground subsequent calls (e.g., to confirm the caller’s identity before making destructive changes). This tool does not accept a user ID; it always returns the authenticated caller.
curl --request GET \
--url https://api.example.com/api/users/me{
"id": "<string>",
"is_active": true,
"is_superuser": true,
"is_verified": true,
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z",
"email": "<string>",
"first_name": "<string>",
"last_name": "<string>"
}Documentation Index
Fetch the complete documentation index at: https://docs.gumnut.ai/llms.txt
Use this file to discover all available pages before exploring further.
Successful Response
Represents a user account with profile information.
Unique user identifier with 'intuser_' prefix
Whether this user account is currently active
Whether this user has superuser/admin privileges
Whether this user's email is verified
When this user account was created
When this user account was last updated
User's email address
User's first name
User's last name