Skip to main content
GET
/
api
/
v1
/
test-management
/
{spaceSlug}
curl -X GET "https://your-collabase.ch/api/v1/test-management/my-space" \
  -H "Authorization: Bearer cba_live_xYz123ABCD..."
[
  {
    "id": "proj-abc123",
    "name": "Frontend QA",
    "description": "All tests covering the frontend application",
    "icon": "๐Ÿงช",
    "_count": {
      "TestSuite": 4,
      "TestRun": 12
    }
  }
]
Returns all test projects in the given space. Each project includes a count of its associated test suites and test runs.
Your API key must belong to a user with at least read access to the target space.

Path parameters

spaceSlug
string
required
The slug of the space. Visible in the space URL.

Response

Returns an array of test project objects.
id
string
required
Unique identifier of the test project.
name
string
required
Display name of the test project.
description
string
Optional description of the test project.
icon
string
Emoji icon representing the project.
_count
object
required
curl -X GET "https://your-collabase.ch/api/v1/test-management/my-space" \
  -H "Authorization: Bearer cba_live_xYz123ABCD..."
[
  {
    "id": "proj-abc123",
    "name": "Frontend QA",
    "description": "All tests covering the frontend application",
    "icon": "๐Ÿงช",
    "_count": {
      "TestSuite": 4,
      "TestRun": 12
    }
  }
]