Skip to main content
GET
/
v1
/
projects
/
{projectId}
/
test-suites
/
{testSuiteId}
/
results
Get Test Results
curl --request GET \
  --url https://api.pathors.com/v1/projects/{projectId}/test-suites/{testSuiteId}/results \
  --header 'Authorization: <authorization>'
{
  "data": [
    {}
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.pathors.com/llms.txt

Use this file to discover all available pages before exploring further.

Request

GET https://api.pathors.com/v1/projects/{projectId}/test-suites/{testSuiteId}/results

Path Parameters

projectId
string
required
The project ID
testSuiteId
string
required
The test suite ID

Headers

Authorization
string
required
Bearer token using your developer key

Response

data
array
Array of test result objects, each including testCaseResults with nested criteriaResults.

Example

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"
    }
  ]
}