UBIK Agent will launch soon, join the waitlist to get access!
import requests
url = "https://app.ubik-agent.com/api/v1/users/me"
headers = {"X-API-KEY": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text){
"username": "testuser",
"full_name": "Test User",
"uuid_id": "a1b2c3d4-e5f6-7890-1234-567890abcdef",
"created_at": "2025-09-28T12:00:00Z",
"balance": 100,
"chat_session_count": 5,
"document_count": 42,
"workspace_count": 3,
"assistant_count": 2,
"mcp_server_count": 1,
"skill_count": 4
}Get the details of the current user.
import requests
url = "https://app.ubik-agent.com/api/v1/users/me"
headers = {"X-API-KEY": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text){
"username": "testuser",
"full_name": "Test User",
"uuid_id": "a1b2c3d4-e5f6-7890-1234-567890abcdef",
"created_at": "2025-09-28T12:00:00Z",
"balance": 100,
"chat_session_count": 5,
"document_count": 42,
"workspace_count": 3,
"assistant_count": 2,
"mcp_server_count": 1,
"skill_count": 4
}Documentation Index
Fetch the complete documentation index at: https://docs.ubik-agent.com/llms.txt
Use this file to discover all available pages before exploring further.
Successful Response
Schema for publicly exposed user information.
The username of the user.
The unique identifier for the user.
The timestamp when the user account was created.
The current balance of the user's account.
The total number of chat sessions initiated by the user.
The total number of documents accessible to the user.
The total number of workspaces accessible to the user.
The total number of assistants accessible to the user.
The total number of MCP servers accessible to the user.
The total number of skills accessible to the user.
The full name of the user.
Was this page helpful?