Skip to content
Testsigma DOCS

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 →
idUnique application identifier.
nameApplication name.
descriptionApplication description.
projectIdID of the parent project.
applicationTypeType — WebApplication, AndroidNative, IOSNative, etc.
createdByIdID 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
  }
]