GET
/
eval
/
run
curl --request GET \
  --url https://api.coval.dev/eval/run
{
  "message": "Query executed successfully",
  "status": "COMPLETED, FAILED, IN_QUEUE, RUNNING",
  "result": [
    {
      "dataset_row_id": 123,
      "input_str": "<string>",
      "output_str": "<string>",
      "metrics": {}
    }
  ]
}

Query Parameters

run_id
integer
required

ID of the run to retrieve the status or metrics for

type
enum<string>
default:
status

Type of information to retrieve: 'status' or 'metrics'

Available options:
status,
metrics

Response

200
application/json
Run status or metrics retrieved successfully
message
string
status
string
result
object[]