Skip to content
Testsigma DOCS

List projects

GET/projects

Base URL  https://app.testsigma.com/api/v1

Get the IDs and details of all projects in the workspace.

Authenticate with your API key as a Bearer token in the Authorization header. Generate a key →
idUnique project identifier.
nameProject name.
descriptionProject description.
projectTypeApplication type — WebApplication, AndroidNative, IOSNative, etc.
hasMultipleAppsWhether the project contains multiple apps.
hasMultipleVersionsWhether the project uses versioning.
isDemoWhether this is a demo project.
createdByIdID of the user who created the project.
REQUEST
curl -X GET \
  'https://app.testsigma.com/api/v1/projects' \
  -H 'Authorization: Bearer <API_KEY>' \
  -H 'Content-Type: application/json'
const response = await fetch('https://app.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://app.testsigma.com/api/v1/projects',
  headers={
    'Authorization': 'Bearer <API_KEY>',
    'Content-Type': 'application/json'
  }
)
data = response.json()
RESPONSE200OK
[
  {
    "id": 11,
    "name": "Simply Travel (Demo)",
    "description": "Demo application. Feel free to delete.",
    "projectType": "WebApplication",
    "hasMultipleApps": true,
    "hasMultipleVersions": true,
    "isDemo": true,
    "createdById": 9
  },
  {
    "id": 12,
    "name": "Checkout",
    "projectType": "WebApplication",
    "isDemo": false,
    "createdById": 9
  }
]