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

# Get Evals Status

> Check whether the Evals feature is enabled for your organization.

### Headers

<ParamField header="authorization" type="string" required>
  Your API key for authentication.
</ParamField>

### Response

<ResponseField name="enabled" type="boolean">
  Whether Evals is enabled for your organization.
</ResponseField>

<ResponseField name="gate" type="string">
  The feature gate key. Always `evals_enabled`.
</ResponseField>

<ResponseField name="reason" type="string">
  Why the feature is unavailable, or `null` when enabled.
</ResponseField>

<Note>
  This is the only Evals endpoint that is not gated. When Evals is disabled, every other `/v1/evals` endpoint returns `404`.
</Note>

<ResponseExample>
  ```json Response theme={null}
  {
    "data": {
      "enabled": true,
      "gate": "evals_enabled",
      "reason": null
    },
    "errors": null
  }
  ```
</ResponseExample>

***

Docs for agents: [llms.txt](/llms.txt)
