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

Request

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

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
object
The test suite object with id, name, and testCases (array of { id }).

Example

curl https://api.pathors.com/v1/projects/{projectId}/test-suites/{testSuiteId} \
  -H "Authorization: Bearer dk_your_key"
{
  "data": {
    "id": "test-suite-uuid",
    "projectId": "project-uuid",
    "name": "Regression suite",
    "testCases": [
      { "id": "test-case-uuid-1" },
      { "id": "test-case-uuid-2" }
    ],
    "createdAt": "2026-03-23T00:00:00.000Z",
    "updatedAt": "2026-03-23T00:00:00.000Z"
  }
}