cURL
curl --request GET \ --url https://api.pathors.com/v1/projects/{projectId}/test-suites \ --header 'Authorization: <authorization>'
{ "data": [ {} ] }
List all test suites for a project
GET https://api.pathors.com/v1/projects/{projectId}/test-suites
id
name
testCases
{ id }
curl https://api.pathors.com/v1/projects/{projectId}/test-suites \ -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" } ] }