Metrics
Get a metric
Returns a single metric with its current configuration.
Authorization
personalAccessToken AuthorizationBearer <token>
Personal Access Token of a Dynamiq user — the only credential accepted by the management API (api.*). Prefix dyn_pat_ (legacy uak_ tokens still authenticate). Send as Authorization: Bearer <token>.
In: header
Path Parameters
metric_id*string
Metric UUID.
Response Body
application/json
application/json
application/json
curl -X GET "https://example.com/v1/metrics/497f6eca-6276-4993-bfeb-53cbbbba6f08"{
"data": {
"id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
"name": "string",
"project_id": "405d8375-3514-403b-8c43-83ae74cfe0e9",
"type": "llm_as_a_judge",
"config": {},
"latest_version_id": "8562ca50-d99e-4ec5-9529-9c17b0fd462e",
"created_at": "2019-08-24T14:15:22Z",
"updated_at": "2019-08-24T14:15:22Z",
"created_by": {
"id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
"first_name": "string",
"last_name": "string",
"avatar_url": "string"
},
"updated_by": {
"id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
"first_name": "string",
"last_name": "string",
"avatar_url": "string"
}
}
}{
"error": {
"code": "unauthorized",
"message": "Unauthorized"
}
}{
"error": {
"code": "not_found",
"message": "Not Found"
}
}Test metrics
Runs one or more metric configurations against sample input without persisting anything, returning each metric's score. Useful for tuning a metric's prompt or settings before saving it. Each entry carries a `metric` configuration (with its `type`) and the `input` record to score; an optional `input_transformer` remaps the fields the metric receives.
Delete a metric
Deletes a metric and its version history.