List applications
GET
/applications
Base URL
https://app.testsigma.com/api/v1
Get the IDs and details of all applications across all projects.
Authenticate with your API key as a
Bearer token in the
Authorization header. Generate a key →RESPONSE ATTRIBUTES
id | Unique application identifier. |
name | Application name. |
description | Application description. |
projectId | ID of the parent project. |
applicationType | Type — WebApplication, AndroidNative, IOSNative, etc. |
createdById | ID of the user who created the application. |
REQUEST
curl -X GET \
'https://app.testsigma.com/api/v1/applications' \
-H 'Authorization: Bearer <API_KEY>' \
-H 'Content-Type: application/json'const response = await fetch('https://app.testsigma.com/api/v1/applications', {
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/applications',
headers={
'Authorization': 'Bearer <API_KEY>',
'Content-Type': 'application/json'
}
)
data = response.json()RESPONSE200OK
[
{
"id": 33,
"name": "Simply Travel Web",
"description": "Web front-end",
"projectId": 11,
"applicationType": "WebApplication",
"createdById": 9
},
{
"id": 34,
"name": "Simply Travel Android",
"projectId": 11,
"applicationType": "AndroidNative",
"createdById": 9
}
]