> For the complete documentation index, see [llms.txt](https://docs.ox.security/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.ox.security/scan-and-analyze-with-ox/scanning/ox-cli-1/authenticating-ox-cli/connect-ox-cli-with-an-api-key.md).

# Connect OX CLI with an API key

Use an API key when OAuth authentication isn't available or when you prefer to authenticate the OX CLI with a static credential. After you configure the API key, the CLI uses it for subsequent commands until you configure a different authentication method.

### Before you begin

[Retrieve your IDE/CLI integration key from the OX platform.](/scan-and-analyze-with-ox/scanning/ox-ide-integrations/generating-ide-cli-integration-key.md)

### Connect the CLI

1. Configure the API key.

   ```bash
   ox-cli config set api-key <your-api-key>
   ```

   Alternatively, run the following command and press **Enter** to securely enter the API key interactively.

   ```bash
   ox-cli config
   ```
2. (Optional) Configure the OX API endpoint.

   Configure a custom API endpoint only if you're connecting to an environment other than the default OX Cloud endpoint.

   ```bash
   ox-cli config set api-host https://custom.api.endpoint.com
   ```
3. Verify the configuration.

   To verify the configured API key:

   ```bash
   ox-cli config get api-key
   ```

   To verify the configured API endpoint:

   ```bash
   ox-cli config get api-host
   ```

> **Note**
>
> Running `ox-cli config` without arguments is the recommended way to securely enter your API key because the value isn't displayed in your terminal or stored in your shell history.


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://docs.ox.security/scan-and-analyze-with-ox/scanning/ox-cli-1/authenticating-ox-cli/connect-ox-cli-with-an-api-key.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
