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

# Authentication

Sign up for an account on <a href="https://nurmo.app">NurmoAI</a> and obtain a FREE API key from your dashboard!

All API requests must include your API key in the Authorization HTTP header as shown below:

<Info>
  Replace NURMOAI\_API\_KEY with your API key from dashboard!
</Info>

<CodeGroup>
  ```javascript NodeJS theme={null}
  const nurmo = new NurmoAI({
  apiKey: "NURMOAI_API_KEY"
  });
  ```

  ```python Python theme={null}
  nurmo = NurmoAI(api_key="NURMOAI_API_KEY")
  ```

  ```bash cURL theme={null}
  Authorization: Bearer NURMOAI_API_KEY
  ```
</CodeGroup>
