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

# Authentication

Catalogix's REST APIs use a Bearer token to authenticate and authorize calls.
**Follow the steps listed here to get started**.

<Steps>
  <Step title="Go to Tokens">
    From your active workspace, navigate to the **Tokens** section.
  </Step>

  <Step title="Create a New Token">
    Click the **Create New Token** button. Enter a name for the token and set an expiry date.
  </Step>

  <Step title="Click Create Token">
    Click **Create Token** to generate your token.
  </Step>

  <Step title="Copy Your Token">
    Copy the token immediately and store it in a secure location. It is shown **only once** — you will not be able to view it again.
  </Step>
</Steps>

**For calling an API**: Pass the token as a Bearer token in the `Authorization` header as follows:

```
Authorization: Bearer <your-token>
```

You can use the same token for all APIs. The Bearer token is required for all API calls except health check endpoints.
