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
Phone TestingGet call results grouped by suite
TestMu AI
StatusCommunityBlog
Phone Testing

Get call results grouped by suite

Get phone call results grouped by suite for a project.

GET
/api/results/{project_id}
Get call results grouped by suite
curl --request GET \
--url "https://agent-testing.lambdatest.com/api/results/{project_id}" \
--header "Authorization: Basic <encoded-value>"
{
"project_id": "<string>",
"suites": [
{
"suite_id": "<string>",
"suite_name": "<string>",
"scenarios": [
{
"scenario_id": "<string>",
"scenario_title": "<string>",
"call_id": "<string>"
}
]
}
]
}

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 in the project with their scenario/call ID pairs; `suites` is empty when the project has no call results

project_idstringrequired
suitesobject[]required
suites.suite_idstring
Example: "<string>"
suites.suite_namestring
Example: "<string>"
suites.scenariosobject[]
Get call results grouped by suite
curl --request GET \
--url "https://agent-testing.lambdatest.com/api/results/{project_id}" \
--header "Authorization: Basic <encoded-value>"
{
"project_id": "<string>",
"suites": [
{
"suite_id": "<string>",
"suite_name": "<string>",
"scenarios": [
{
"scenario_id": "<string>",
"scenario_title": "<string>",
"call_id": "<string>"
}
]
}
]
}