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

# Account & API Keys

> Manage your profile, teams, and API tokens

**Nav:** Sidebar > Account (bottom left) | **URL:** [`/account`](https://engine.remyx.ai/account)

The Account page manages your Remyx identity, team memberships, and API credentials.

***

## Profile

Your profile helps Remyx personalize recommendations and set up your workspace.

| Field         | Description                                                                                                          |
| ------------- | -------------------------------------------------------------------------------------------------------------------- |
| **Name**      | Display name shown in experiment activity feeds and decisions                                                        |
| **Email**     | Account email (read-only)                                                                                            |
| **Role**      | Primary role: ML Engineer, Researcher, Data Scientist, Product Leader, or Other                                      |
| **Interests** | Comma-separated list of topics you work on — used as default context when you haven't created Research Interests yet |

Click **Save** to update your profile.

***

## Teams

Teams group users for shared project access and experiment visibility.

### Creating a Team

Click **Create Team** and provide a team name. You're added as the owner.

### Team Management

The Teams table shows:

| Column        | Description                     |
| ------------- | ------------------------------- |
| **Team Name** | Name of the team                |
| **Your Role** | Owner, Admin, or Member         |
| **Actions**   | Manage members, edit, or delete |

***

## Projects

A summary of all projects (projects) you have access to. Each row shows:

| Column           | Description                  |
| ---------------- | ---------------------------- |
| **Project Name** | Project name                 |
| **Team**         | Associated team              |
| **Actions**      | Open project, go to settings |

Click **Create Project** to start a new project — redirects to [Project Settings](/platform/admin/project-settings).

***

<h2 id="api-access">
  API Access
</h2>

Manage API tokens for programmatic access to Remyx.

### Remyx API Key

Your primary API key for authenticating with the Remyx REST API, CLI, and MCP server.

| Action       | How                                                                |
| ------------ | ------------------------------------------------------------------ |
| **Generate** | Click **Generate** to create a new API key                         |
| **View**     | Click the eye icon to reveal the full token                        |
| **Copy**     | Click the copy icon to copy to clipboard                           |
| **Refresh**  | Click **Refresh** to rotate the key (invalidates the previous key) |
| **Delete**   | Click **Delete** to revoke the key                                 |

<Warning>
  Refreshing or deleting your API key immediately invalidates the old one. Any CLI sessions, MCP connections, or scripts using the old key will stop working.
</Warning>

Use this key for:

```bash theme={null}
# CLI authentication
export REMYXAI_API_KEY=<your-key>

# MCP server connection
{
  "mcpServers": {
    "remyx": {
      "type": "http",
      "url": "https://mcp.remyx.ai/mcp",
      "headers": {
        "Authorization": "Bearer <your-key>"
      }
    }
  }
}

# REST API calls
curl -H "Authorization: Bearer <your-key>" \
  https://engine.remyx.ai/api/v1.0/interests
```

### GitHub PAT

A GitHub Personal Access Token with write access. Used by the implementation pipeline to push branches and open PRs in your repos.

<Note>
  If you've connected GitHub via OAuth at [Connectors](/platform/manage/connectors#github), the OAuth token is used instead of the PAT. The PAT is a fallback for repos where the OAuth app isn't installed.
</Note>

### HuggingFace Token

HuggingFace access token for gated models and datasets.

### Statsig Console Secret Key

Used for A/B test result integration when Statsig is configured as the testing provider in [Project Settings](/platform/admin/project-settings).

***

## Security Best Practices

* **Never commit tokens** to version control. Use environment variables, `.env` files (with a loader), or CI secret stores.
* **Rotate keys periodically** using the Refresh action.
* **Use OAuth connections** (via Connectors) instead of PATs when possible — OAuth tokens are scoped and auto-refreshable.
* API keys authenticate as your user — any action taken with your key is attributed to your account.

***

## Related

<CardGroup cols={2}>
  <Card title="Project Settings" icon="gear" href="/platform/admin/project-settings">
    Configure projects, metrics, and connected tools
  </Card>

  <Card title="Connectors" icon="link" href="/platform/manage/connectors">
    Connect tools via OAuth instead of PATs
  </Card>

  <Card title="CLI Authentication" icon="terminal" href="/cli#authentication">
    Set up the CLI with your API key
  </Card>

  <Card title="API Reference" icon="code" href="/api-reference/api-reference">
    REST API documentation
  </Card>
</CardGroup>
