Get call executions for a test run

Lists call executions for a test run.

GET https://api.futureagi.com/simulate/run-tests/{run_test_id}/call-executions/

Authentication

X-Api-Key API Key Required

Your Future AGI API key used to authenticate requests. You can find and manage your API keys in the Dashboard under Settings.

X-Secret-Key Secret Key Required

Your Future AGI secret key, used alongside the API key for request authentication. This is generated when you create an API key in the Dashboard.

Path parameters

run_test_id UUID Required

UUID of the test run whose call executions to retrieve.

Query parameters

search string Optional

Case-insensitive partial match on phone number or scenario name.

status string Optional

Filter by call status.

limit integer Optional

Number of records per page. Defaults to 10. Must be a positive integer.

page integer Optional

Page number to retrieve. Defaults to 1.

Response

200 OK
count integer

Total matching call executions across all pages.

next string or null

URL to the next page, or null if on the last page.

previous string or null

URL to the previous page, or null if on the first page.

results array of objects

Array of call execution objects for the current page.

id string

UUID of the call execution.

session_id string or null

Session identifier for external correlation, or null.

status string

Current call status.

duration number or null

Call duration in seconds, or null if not completed.

start_time string or null

ISO 8601 call start timestamp, or null if not started.

transcript array of objects

Ordered conversation transcript. Empty array if unavailable.

scenario object or null

Object with id and name of the source scenario, or null if deleted.

overall_score number or null

Aggregate evaluation score (0-100), or null if not yet computed.

eval_outputs object or null

Raw outputs from each evaluation metric, or null if not processed.

eval_metrics object or null

Computed evaluation metric values by metric name, or null.

customer_name string or null

Simulated customer name from scenario data, or null.

call_summary string or null

Auto-generated call summary, or null.

ended_reason string or null

Reason the call ended (e.g., "completed", "timeout", "error"), or null.

avg_agent_latency number or null

Average agent response latency in seconds, or null.

scenario_id string or null

UUID of the source scenario, or null.

is_snapshot boolean

Whether this is a preserved historical snapshot.

rerun_type string or null

Type of rerun, or null for original executions.

created_at string

ISO 8601 creation timestamp.

Errors

401 Unauthorized Optional

Missing or invalid X-Api-Key or X-Secret-Key headers.

404 Not Found Optional

No test run found with the specified run_test_id.

500 Internal Server Error Optional

Unexpected server error. Contact support if it persists.

GET /
Authentication
REQUEST
 
RESPONSE