Our docs got a refresh! Check out the new content and improved navigation. For detailed API reference see our Python SDK docs and TypeScript SDK.
Description
API referenceEvaluators

List Evaluators

List of available evaluators for Evaluation Runs and LLM Monitoring.

GET
/v1/evaluators
/v1/evaluators

The Authorization access token

Authorization

X-API-KEY<token>

In: header

Query Parameters

by_alias_or_idBy Alias Or Id

curl -X GET "https://api.patronus.ai/v1/evaluators?by_alias_or_id=string" \
  -H "X-API-KEY: <token>"

Successful Response

{
  "evaluators": [
    {
      "id": "string",
      "name": "string",
      "description": "string",
      "image_url": "string",
      "evaluation_run_enabled": true,
      "evaluation_enabled": true,
      "profile_required": true,
      "evaluator_family": "string",
      "aliases": [
        "string"
      ],
      "default_criteria": "string"
    }
  ]
}