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

# Whoami

> Display current account information

# Whoami Command

The whoami command shows your current account information and credit balance.

## Usage

```bash theme={null}
npx depfixer whoami
```

## Output

```
👤 ACCOUNT DETAILS
────────────────────────────────────────
    Name:     John Doe
    Email:    john@example.com
    Credits:  100 available
```

### With Active Pass

If you have an active unlimited pass:

```
👤 ACCOUNT DETAILS
────────────────────────────────────────
    Name:     John Doe
    Email:    john@example.com
    Plan:     24H Unlimited Pass ✓
    Credits:  100 available
```

## Information Displayed

| Field       | Description                           |
| ----------- | ------------------------------------- |
| **Name**    | Your account display name             |
| **Email**   | Email address associated with account |
| **Plan**    | Active subscription pass (if any)     |
| **Credits** | Current credit balance                |

## Not Logged In

If you're not authenticated:

```
Not logged in

Run `npx depfixer login` to authenticate.
```

## Use Cases

### Check Balance Before Analysis

```bash theme={null}
# Check credits
npx depfixer whoami

# If sufficient, run analysis
npx depfixer
```

### Verify Login

After logging in on a new machine:

```bash theme={null}
npx depfixer login
# ... complete auth flow ...

npx depfixer whoami
# Verify correct account
```
