Method returns tests list from StartExam using specified filters.
GET https://api.startexam.com/v1/tests?projectId={projectId}&type={type}&status={status}
projectId - optional filter by project identifier, guid from StartExam.
type - optional filter by type. Supported values: test , survey.
status - optional filter by status. Supported values: active , archive , deleted.
None.
GET https://api.startexam.com/v1/tests?projectId=8d1ccc58-841c-430c-8799-5602680a12fb HTTP/1.1
Host: api.startexam.com
Accept: application/json; charset=utf-8
Authorization: SharedKey 99:f52JP7GQd0xqrBzMO1NWTNVGzLENymgdUXu/Ie++NX4=
Content-Type: application/json; charset=utf-8
Date: Wed, 21 Jan 2026 11:25:50 GMT
Date and Authorization headers are constructed in the standard way.
200 OK, 400 Bad Request, etc. according the response processing guide.
Json.
testId - test id, guid.
projectId - project id, guid.
type - test type, test/survey.
status - test status, active/archive/deleted.
title - test name, string.
description - test description, string, nullable.
time - test time limit, HH:MM:SS, nullable.
modified - test last modified in UTC, ISO 8601.
HTTP/1.1 200 OK
Content-Type: application/json; charset=utf-8
Content-Length: 657
{
"tests": [
{
"testId": "d2c93581-6845-49f3-b7bd-a0fa1b8bb61a",
"projectId": "8d1ccc58-841c-430c-8799-5602680a12fb",
"type": "test",
"status": "active",
"title": "IQ Test",
"description": "Standard intelligence quotient assessment",
"time": "02:00:00",
"modified": "2025-03-21T11:25:50Z"
},
{
"testId": "87868be9-fed3-4dea-9aeb-ee061677f4de",
"projectId": "8d1ccc58-841c-430c-8799-5602680a12fb",
"type": "survey",
"status": "deleted",
"title": "Motivation Survey",
"description": null,
"time": null,
"modified": "1996-01-21T11:25:50Z"
}
]
}