> ## 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

API Keyは、ダッシュボードから Settings > Personal Settings > API Keyから作成することができます。

<CardGroup cols={2}>
  <Card title="コネクタを使用する" icon="square-1" href="/docs/ja/develop/guides/integration">
    ダッシュボードで作成したコネクタを使用してDB/SaaSにアクセスする
  </Card>

  <Card title="Deploy" icon="square-2" href="/docs/ja/quickstart/dashboard-setup">
    Morphのフレームワークを用いて構築したアプリをデプロイする
  </Card>
</CardGroup>

## API Keyを設定 / 使用する

CLIで以下のコマンドを実行することによって、`~/.morph/credentials`にAPI Keyが保存されます。

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

`~/.morph/credentials`には、以下のようにProfileごとに認証情報が登録をされます。`~/.morph/credentials`の中身を直接編集をすることで設定を変更することもできます。

```
[default]
api_key = [API_KEY]

[profile_name]
api_key = [API_KEY]
```

<Tip>profileを指定しない場合は`default`が使用されます。`morph_project.yml`でprofileを指定することで、プロジェクトで指定するprofileを切り替えることができます。</Tip>
