Skip to main content
GET
/
users
/
me
Get current user profile
curl --request GET \
  --url https://core.cyberun.cloud/api/v1/users/me \
  --header 'Authorization: Bearer <token>'
{
  "id": "019abc12-3456-7890-abcd-ef1234567890",
  "first_name": "Alice",
  "last_name": "Chen",
  "display_name": "Alice Chen",
  "email_address": "alice@example.com",
  "team_list": [
    {
      "id": "019abc12-4567-7890-abcd-ef1234567891",
      "display_name": "Alice's Team"
    }
  ],
  "feature_flags": {
    "global": {
      "features": {
        "registration": true,
        "oauth": true,
        "email": true,
        "oidc_provider": true,
        "mcp_server": true,
        "auto_team": true,
        "notifications": true
      },
      "quotas": {
        "max_users": 123,
        "max_teams": 123,
        "max_agents": 123,
        "max_concurrent_tasks": 123
      }
    },
    "account": {
      "features": {
        "manual_team_creation": true,
        "team_invitation_accept": true
      },
      "quotas": {
        "max_owned_teams": 123
      }
    },
    "teams": {}
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.cyberun.cloud/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

User session JWT (Bearer ). Must be paired with the X-Team-ID request header on team-scoped endpoints so the server knows which team's resources to operate on.

Response

Current user profile

Full profile of the authenticated user.

id
string<uuid>
required

UUID of the user.

Example:

"019abc12-3456-7890-abcd-ef1234567890"

first_name
string
required

User's first (given) name.

Example:

"Alice"

last_name
string
required

User's last (family) name.

Example:

"Chen"

display_name
string
required

Display name shown in the UI (defaults to "first_name last_name" on registration).

Example:

"Alice Chen"

email_address
string<email>
required

User's email address.

Example:

"alice@example.com"

team_list
object[]
required

Teams the user belongs to.

feature_flags
object
required

Which product features are active on this deployment. Returned here (behind authentication) rather than in /server-info, so the catalog of licensed capabilities is not visible to unauthenticated callers.