---
title: "List Evaluator Templates"
method: GET
path: "/simple/evaluators/templates"
tags: ["Evaluators"]
---

# List Evaluator Templates

`GET /simple/evaluators/templates`

List the legacy built-in evaluator templates.

Returns static evaluator-type definitions shipped with the
product. Prefer the `/evaluators/catalog/*` endpoints for new
integrations; this endpoint is kept for older clients. Pass
`include_archived=true` to include deprecated templates.

## Query parameters

- `include_archived` boolean, nullable

## Response `200`

Successful Response

- EvaluatorTemplatesResponse — Envelope for a list of evaluator templates.
  - `count` integer — Number of templates in `templates`.
  - `templates` EvaluatorTemplate[] — Built-in evaluator templates.
    - `name` string, required — Human-readable template name.
    - `key` string, required — Stable template identifier, used to create evaluators from the template.
    - `direct_use` boolean, required — Whether the template can be used without further configuration.
    - `settings_presets` object[], nullable — Preset parameter configurations shipped with the template.
    - `settings_template` object, required — JSON Schema describing the template's configurable parameters.
    - `outputs_schema` object, nullable — JSON Schema describing the template's evaluator output shape.
    - `description` string, nullable — Template description.
    - `oss` boolean, nullable — True when the template is available in OSS builds.
    - `requires_llm_api_keys` boolean, nullable — True when the template calls an LLM provider and requires an API key.
    - `tags` string[] — Tags for grouping templates.
    - `archived` boolean, nullable — True when the template is deprecated. Hidden unless `include_archived=true`.

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.net/agenta-ai/apis/agenta-api.md) · [All operations](https://skmtc.net/agenta-ai/apis/agenta-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/agenta-ai/agenta-api/versions/ea6421d829f1/schema)
