curl --request GET \
--url https://api.pathors.com/v1/projects/{projectId}/test-suites/{testSuiteId}/results \
--header 'Authorization: <authorization>'{
"data": [
{}
]
}Get test results for a test suite
curl --request GET \
--url https://api.pathors.com/v1/projects/{projectId}/test-suites/{testSuiteId}/results \
--header 'Authorization: <authorization>'{
"data": [
{}
]
}GET https://api.pathors.com/v1/projects/{projectId}/test-suites/{testSuiteId}/results
testCaseResults with nested criteriaResults.curl https://api.pathors.com/v1/projects/{projectId}/test-suites/{testSuiteId}/results \
-H "Authorization: Bearer dk_your_key"
{
"data": [
{
"id": "test-result-uuid",
"testSuiteId": "test-suite-uuid",
"projectId": "project-uuid",
"name": "Run #1",
"status": "completed",
"startedAt": "2026-03-23T00:00:00.000Z",
"completedAt": "2026-03-23T00:01:00.000Z",
"testCaseResults": [
{
"id": "test-case-result-uuid",
"testResultId": "test-result-uuid",
"testCaseId": "test-case-uuid",
"status": "passed",
"messages": [],
"criteriaResults": [
{
"id": "criteria-result-uuid",
"testCaseResultId": "test-case-result-uuid",
"criterionId": "criterion-uuid",
"passed": true,
"reason": "Agent greeted the user correctly"
}
]
}
],
"createdAt": "2026-03-23T00:00:00.000Z",
"updatedAt": "2026-03-23T00:01:00.000Z"
}
]
}