FruxonDocs
EvaluationMetrics

List all evaluation metrics defined for this tenant.

Returns the tenant's metric library — both built-in system metrics and tenant-defined LLM-judge metrics. By default, deprecated metrics are filtered out; pass `includeDeprecated=true` to see them (useful when rendering a UI that still needs to label agents pinned to a deprecated metric). Per-agent opt-in weights are exposed separately via `GET AgentEvaluationMetrics`.

GET
/v1/tenants/{tenant}/evaluationMetrics
AuthorizationBearer <token>

JWT Authorization header using the Bearer scheme. Enter 'Bearer' [space] and then your token.

In: header

Path Parameters

tenant*string

The tenant identifier

Query Parameters

includeDeprecated?boolean

When true, deprecated metrics are included.

Defaultfalse

Response Body

curl -X GET "https://api.fruxon.com/v1/tenants/string/evaluationMetrics"
[
  {
    "id": "00000000-0000-0000-0000-000000000000",
    "key": "string",
    "name": "string",
    "description": "string",
    "defaultWeight": 0,
    "isDeprecated": false,
    "createdAt": 0,
    "modifiedAt": 0
  }
]
Empty
Empty
{
  "type": "string",
  "title": "string",
  "status": 0,
  "detail": "string",
  "instance": "string",
  "property1": null,
  "property2": null
}