> ## Documentation Index
> Fetch the complete documentation index at: https://60db.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Authentication

> Authentication commands for 60db CLI

# Authentication

## Commands

### Login with Email and Password (Recommended)

```bash theme={null}
60db auth:login --email your@email.com --password yourpassword
```

### Show Current Session Info

```bash theme={null}
60db auth:session
```

### Get Current Authentication Token

```bash theme={null}
60db auth:token
```

### Logout and Clear Token

```bash theme={null}
60db auth:logout
```

## Examples

### Authentication & Setup

```bash theme={null}
# Login to get token
60db auth:login --email your@email.com --password yourpassword

# Check session
60db auth:session

# Or manually set API key
60db config --set apiKey=your_token_here
```
