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

# Authentication

The Quality Evaluator API uses Phrase Platform authentication.

Generate an API token for **Quality Evaluator** in the [Phrase Platform Settings](https://eu.phrase.com/idm-ui/settings/access-tokens), then exchange it for a JWT as described in the [Platform Authentication guide](/en/api/platform/authentication).

Include the JWT in the `Authorization` header with every request:

```bash theme={null}
curl -X GET "https://eu.phrase.com/quality-evaluator/v3/qualityProfiles/cg-abc123" \
  -H "Authorization: Bearer YOUR_JWT_TOKEN"
```

### Required roles

Most endpoints only require an authenticated caller. Analytics is restricted further:

| Access level                | Endpoints                        |
| --------------------------- | -------------------------------- |
| Any authenticated user      | Quality Profile by Content Group |
| **ADMIN** or **OWNER** role | Evaluate segments, Analytics     |

Requests to restricted endpoints made by users without the required role will receive a `403 Forbidden` response.
