> ## Documentation Index
> Fetch the complete documentation index at: https://docs.hopx.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Profile

> Complete reference for HopX CLI profile commands - view and update user profile information.

Manage your user profile using the `profile` command. View and update your profile information.

## Command Syntax

```bash theme={null}
hopx profile <subcommand> [options]
```

## Subcommands

### `info`

Get user profile information.

**Syntax:**

```bash theme={null}
hopx profile info [OPTIONS]
```

**Examples:**

```bash theme={null}
# Get profile info
hopx profile info
```

**Expected Output:**

```
┌─────────────┬─────────────────────────────────────┐
│ Property    │ Value                               │
├─────────────┼─────────────────────────────────────┤
│ Name        │ John Doe                            │
│ Email       │ john@example.com                    │
│ User ID     │ user_abc123                         │
│ Created     │ 2025-01-01                          │
└─────────────┴─────────────────────────────────────┘
```

**Exit Codes:**

* `0` - Success
* `3` - Authentication error

### `update`

Update user profile information.

**Syntax:**

```bash theme={null}
hopx profile update [OPTIONS]
```

**Options:**

* `--name TEXT` - Full name
* `--email TEXT` - Email address

**Examples:**

```bash theme={null}
# Update profile name
hopx profile update --name "Jane Doe"

# Update email
hopx profile update --email "jane@example.com"
```

**Expected Output:**

```
✓ Profile updated
```

**Exit Codes:**

* `0` - Success
* `3` - Authentication error

## Related

* **[CLI Quickstart](/cli/quickstart)** - Get started with CLI
* **[Authentication](/cli/commands/auth)** - Authenticate with CLI
* **[Configuration](/cli/commands/config)** - Configure CLI settings

## Next Steps

* Learn about [Authentication](/cli/commands/auth) to manage API keys
* Explore [Configuration](/cli/commands/config) to configure CLI settings
* Review [Organization Settings](/cli/commands/org) for organization management
