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 all call results for a suite
TestMu AI
StatusCommunityBlog
Phone Testing

Get all call results for a suite

Get all call results for a suite.

GET
/api/callresults/{suite_id}
Get all call results for a suite
curl --request GET \
--url "https://agent-testing.lambdatest.com/api/callresults/{suite_id}" \
--header "Authorization: Basic <encoded-value>"
{
"suite_id": "suite_8f2c1a",
"suite_name": "Order status regression",
"project_id": "proj_4d9e21",
"results": [
{
"id": "cr_01j9x2",
"scenario_id": "scn_7a1b3c",
"scenario_title": "Ask for order status",
"call_id": "c3a1f5e2-7b41-4e0a-9d2c-1f6b8a3e5d90",
"result": {
"status": "ended",
"endedReason": "customer-ended-call",
"recordingUrl": "/api/audio/c3a1f5e2-7b41-4e0a-9d2c-1f6b8a3e5d90/recording.wav",
"startedAt": "2026-07-28T09:14:03Z",
"endedAt": "2026-07-28T09:16:41Z",
"messages": [
{
"role": "assistant",
"message": "Hi, how can I help you today?",
"secondsFromStart": 1.4
}
],
"audio_analysis": {
"qualitative_evaluation": {
"overallResult": "Pass"
}
}
},
"is_bookmarked": false,
"trigger_source": "manual",
"prompt_version_number": 3
}
]
}

Authorizations

Authorizationstringheaderrequired

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

Path Parameters

suite_idstringrequired

Response

application/json

Full call results including shaped transcripts and threshold configs

suite_idstringrequired

Suite ID

suite_namestring

Suite display name

project_idstringrequired

Owning project ID

resultsobject[]required

Call results, newest first

results.idstring
Example: "cr_01j9x2"
results.scenario_idstring
Example: "scn_7a1b3c"
results.scenario_titlestring
Example: "Ask for order status"
results.call_idstring
Example: "c3a1f5e2-7b41-4e0a-9d2c-1f6b8a3e5d90"
results.resultobject
results.is_bookmarkedboolean
Example: false
results.trigger_sourcestring
Example: "manual"
results.prompt_version_numbernumber
Example: 3
Get all call results for a suite
curl --request GET \
--url "https://agent-testing.lambdatest.com/api/callresults/{suite_id}" \
--header "Authorization: Basic <encoded-value>"
{
"suite_id": "suite_8f2c1a",
"suite_name": "Order status regression",
"project_id": "proj_4d9e21",
"results": [
{
"id": "cr_01j9x2",
"scenario_id": "scn_7a1b3c",
"scenario_title": "Ask for order status",
"call_id": "c3a1f5e2-7b41-4e0a-9d2c-1f6b8a3e5d90",
"result": {
"status": "ended",
"endedReason": "customer-ended-call",
"recordingUrl": "/api/audio/c3a1f5e2-7b41-4e0a-9d2c-1f6b8a3e5d90/recording.wav",
"startedAt": "2026-07-28T09:14:03Z",
"endedAt": "2026-07-28T09:16:41Z",
"messages": [
{
"role": "assistant",
"message": "Hi, how can I help you today?",
"secondsFromStart": 1.4
}
],
"audio_analysis": {
"qualitative_evaluation": {
"overallResult": "Pass"
}
}
},
"is_bookmarked": false,
"trigger_source": "manual",
"prompt_version_number": 3
}
]
}