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

# Authentication

> How to authenticate request to the NodeJS API

The API requires authentication so that only you and your team can access your API information.

## API Tokens

Your API Key can be found by visiting [https://zymono.com/dashboard/api/](https://zymono.com/dashboard/api) and clicking reveal under API Key.

You should store your API Key in an environment variable so that users cannot see it, as it must remain private.

```sh .env theme={null}
API_KEY = 'Your API Key'
```

You can you tools like dotenv to save data in secure environment variables.

## Initiate the API

Initiate the API with the following code

```js theme={null}
zymono.init("YOUR_API_KEY")
```

### Permissions

This API key will grant you access to all of your information retrievable by the API.

This API key can be revoked by us at anytime!
