GET
/
evaluations
/
templates
curl --request GET \
  --url https://api.fixa.dev/v1/evaluations/templates \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": "<string>",
    "name": "<string>",
    "description": "<string>",
    "params": [
      "<string>"
    ],
    "scenarioId": "<string>",
    "toolCallExpectedResult": "<string>",
    "agentId": "<string>",
    "evaluationGroupId": "<string>"
  }
]

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

200
application/json
Evaluation templates retrieved successfully
id
string
required

Unique identifier for the evaluation template

name
string
required

Name of the evaluation template

description
string
required

Description of the evaluation template

params
string[]
required

Parameters for the evaluation

scenarioId
string | null

Associated scenario ID

toolCallExpectedResult
string

Expected result for tool call

agentId
string | null

Associated agent ID

evaluationGroupId
string | null

Associated evaluation group ID