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

# API Key

You can create an API Key from the dashboard by navigating to Settings > Personal Settings > API Key.

<CardGroup cols={2}>
  <Card title="Use Connectors" icon="square-1" href="/docs/en/develop/guides/integration">
    Use DB/SaaS connection using the connectors created in the dashboard
  </Card>

  <Card title="Deploy" icon="square-2" href="/docs/en/quickstart/dashboard-setup">
    Deploy the app built using the Morph framework
  </Card>
</CardGroup>

## Setting / Using the API Key

By executing the following command in the CLI, the API Key will be saved in `~/.morph/credentials`.

```bash Shell theme={"dark"}
morph config
```

`~/.morph/credentials` will be registered with the authentication information for each profile.
You can also change the settings by directly editing the contents of `~/.morph/credentials`.

```
[default]
api_key = [API_KEY]

[profile_name]
api_key = [API_KEY]
```

<Tip>If you do not specify a profile, `default` will be used. You can switch the profile specified in the project by specifying the profile in `morph_project.yml`.</Tip>
