Skip to content
Testsigma DOCS

Get a project

GET/projects/:project_id

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

Retrieves the details of a specific project by its unique identifier.

Authenticate with your API key as a Bearer token in the Authorization header. Generate a key →
project_idUnique identifier of the project to retrieve.
messageStatus message for the request; may be empty.
data.project.idUnique identifier of the project.
data.project.created_atUnix timestamp of when the project was created.
data.project.updated_atUnix timestamp of the last update to the project.
data.project.nameName of the project.
data.project.descriptionDescription of the project.
data.project.human_id_prefixPrefix used for the project's human-readable identifier.
REQUEST
curl -X GET \
  'https://test-management.testsigma.com/api/v1/projects/:project_id' \
  -H 'Authorization: Bearer <API_KEY>' \
  -H 'Content-Type: application/json'
const response = await fetch('https://test-management.testsigma.com/api/v1/projects/:project_id', {
  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/:project_id',
  headers={
    'Authorization': 'Bearer <API_KEY>',
    'Content-Type': 'application/json'
  }
)
data = response.json()
RESPONSE200OK
{
  "message": "",
  "data": {
    "project": {
      "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"
    }
  }
}