Skip to content
Testsigma DOCS

List projects

GET/projects

Base URL  https://test-management.testsigma.com/api/v1

Retrieves a paginated list of projects, with optional filtering by query parameters.

Authenticate with your API key as a Bearer token in the Authorization header. Generate a key →
page_sizeNumber of projects to return per page.
name__NEQExcludes projects whose name matches the given value.
messageStatus message for the request; may be empty.
data.projects[].idUnique identifier of the project.
data.projects[].created_atUnix timestamp of when the project was created.
data.projects[].updated_atUnix timestamp of the last update to the project.
data.projects[].nameName of the project.
data.projects[].descriptionDescription of the project.
data.projects[].human_id_prefixPrefix used for the project's human-readable identifier.
page_info.page_sizeNumber of items returned per page.
page_info.total_countTotal number of projects available.
page_info.nextURL to the next page of results, if any.
page_info.prevURL to the previous page of results, if any.
REQUEST
curl -X GET \
  'https://test-management.testsigma.com/api/v1/projects' \
  -H 'Authorization: Bearer <API_KEY>' \
  -H 'Content-Type: application/json'
const response = await fetch('https://test-management.testsigma.com/api/v1/projects', {
  method: 'GET',
  headers: {
    'Authorization': 'Bearer <API_KEY>',
    'Content-Type': 'application/json'
  }
});
const data = await response.json();
import requests

response = requests.get(
  'https://test-management.testsigma.com/api/v1/projects',
  headers={
    'Authorization': 'Bearer <API_KEY>',
    'Content-Type': 'application/json'
  }
)
data = response.json()
RESPONSE200OK
{
  "message": "",
  "data": {
    "projects": [
      {
        "id": "18c50239-946d-428e-aa0c-260329f5c151",
        "created_at": 1709452800,
        "updated_at": 1712131200,
        "name": "Health Care Project",
        "description": "Regression suite for the patient portal",
        "human_id_prefix": "HCP"
      },
      {
        "id": "a91f3c2d-7b64-4e18-9f02-5c8a1d6e4b73",
        "created_at": 1707436800,
        "updated_at": 1710115200,
        "name": "Banking Platform",
        "description": "End-to-end tests for the core banking app",
        "human_id_prefix": "BNK"
      }
    ]
  },
  "page_info": {
    "page_size": 2,
    "total_count": 17,
    "next": "https://test-management.testsigma.com/api/v1/projects?page_size=2&page=2",
    "prev": ""
  }
}