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 →RESPONSE ATTRIBUTES
id | Unique project identifier. |
name | Project name. |
description | Project description. |
projectType | Application type — WebApplication, AndroidNative, IOSNative, etc. |
hasMultipleApps | Whether the project contains multiple apps. |
hasMultipleVersions | Whether the project uses versioning. |
isDemo | Whether this is a demo project. |
createdById | ID 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
}
]