For AI agents and LLMs: a machine-readable index is available at llms.txt. A plain-Markdown version of any documentation page is available by appending .md to its URL.
Skip to main content
Voice TestingList voice test results for a project
TestMu AI
StatusCommunityBlog
Voice Testing

List voice test results for a project

Get all voice test results for a project, grouped by suite.

GET
/api/projects/{project_id}/voice-results
List voice test results for a project
curl --request GET \
--url "https://agent-testing.lambdatest.com/api/projects/{project_id}/voice-results" \
--header "Authorization: Basic <encoded-value>"
{
"project_id": "f47ac10b-58cc-4372-a567-0e02b2c3d479",
"suites": [
{
"suite_id": "0b8e2f34-6c1d-4f7a-9e52-3d84a1c07b96",
"suite_name": "Voice regression - checkout flows",
"created_at": "2026-07-28T14:03:11.482910",
"total_scenarios": 2,
"completed": 1,
"failed": 0,
"in_progress": 1,
"pending": 0,
"scenarios": [
{
"scenario_id": "5a1e2b7c-9d3f-4e21-8c47-0f6b2d9a1e34",
"scenario_title": "Order status lookup",
"result_id": "7c2d9f10-4b8e-4c6a-a1d3-5e90f2b7c841",
"status": "completed",
"transport_protocol": "websocket",
"created_at": "2026-07-28T14:03:12.001235",
"latency_avg_ms": 820.4,
"turns": 12,
"duration": 47.2,
"validation_overall_compliance": "Pass",
"validation_compliance_percentage": 100,
"validation_pass_count": 3,
"validation_fail_count": 0,
"validation_summary": "3 of 3 criteria passed. 0 failed, 0 unable to verify."
}
]
}
]
}

Authorizations

Authorizationstringheaderrequired

Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.

Path Parameters

project_idstringrequired

Response

application/json

Suites (newest first) with compact per-run rows. An unknown or inaccessible project returns an empty `suites` list rather than an error.

project_idstringrequired
suitesobject[]required
suites.suite_idstring
Example: "0b8e2f34-6c1d-4f7a-9e52-3d84a1c07b96"
suites.suite_namestring
Example: "Voice regression - checkout flows"
suites.created_atstring
Example: "2026-07-28T14:03:11.482910"
suites.total_scenariosnumber
Example: 2
suites.completednumber
Example: 1
suites.failednumber
Example: 0
suites.in_progressnumber
Example: 1
suites.pendingnumber
Example: 0
suites.scenariosobject[]
List voice test results for a project
curl --request GET \
--url "https://agent-testing.lambdatest.com/api/projects/{project_id}/voice-results" \
--header "Authorization: Basic <encoded-value>"
{
"project_id": "f47ac10b-58cc-4372-a567-0e02b2c3d479",
"suites": [
{
"suite_id": "0b8e2f34-6c1d-4f7a-9e52-3d84a1c07b96",
"suite_name": "Voice regression - checkout flows",
"created_at": "2026-07-28T14:03:11.482910",
"total_scenarios": 2,
"completed": 1,
"failed": 0,
"in_progress": 1,
"pending": 0,
"scenarios": [
{
"scenario_id": "5a1e2b7c-9d3f-4e21-8c47-0f6b2d9a1e34",
"scenario_title": "Order status lookup",
"result_id": "7c2d9f10-4b8e-4c6a-a1d3-5e90f2b7c841",
"status": "completed",
"transport_protocol": "websocket",
"created_at": "2026-07-28T14:03:12.001235",
"latency_avg_ms": 820.4,
"turns": 12,
"duration": 47.2,
"validation_overall_compliance": "Pass",
"validation_compliance_percentage": 100,
"validation_pass_count": 3,
"validation_fail_count": 0,
"validation_summary": "3 of 3 criteria passed. 0 failed, 0 unable to verify."
}
]
}
]
}