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=a12c8752-e043-4980-9771-5ce32192750c 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: Sat, 06 Dec 2025 03:18:13 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": "18c4d4cf-4f68-4a7a-954c-27fbaa5bb71c",
"projectId": "a12c8752-e043-4980-9771-5ce32192750c",
"type": "test",
"status": "active",
"title": "IQ Test",
"description": "Standard intelligence quotient assessment",
"time": "02:00:00",
"modified": "2025-02-06T03:18:13Z"
},
{
"testId": "c67d064a-8f32-4771-8b6f-c9eadd1b8ed0",
"projectId": "a12c8752-e043-4980-9771-5ce32192750c",
"type": "survey",
"status": "deleted",
"title": "Motivation Survey",
"description": null,
"time": null,
"modified": "1995-12-06T03:18:13Z"
}
]
}