Get test execution details
Retrieves a test execution with its call executions.
GET
https://api.futureagi.com/simulate/test-executions/{test_execution_id}/ Authentication
Path parameters
test_execution_id
The test execution ID.
Query parameters
search
Filter by scenario name, transcript content, or status.
page
Page number. Defaults to 1.
filters
JSON-encoded filter array, e.g. [{"colId":"status","filterType":"text","type":"equals","filter":"completed"}].
row_groups
JSON-encoded array of column IDs to group by, e.g. ["scenario"].
group_keys
JSON-encoded group key values to drill into. Used with row_groups.
Response
200 OK id
UUID of the test execution.
run_test
UUID of the parent run test.
run_test_name
Parent run test name.
agent_definition_name
Agent definition name.
status
Status:
pending, running, completed, failed, cancelled, cancelling, or evaluating. error_reason
Failure reason.
started_at
ISO 8601 execution start time.
completed_at
ISO 8601 completion time.
total_scenarios
Number of distinct scenarios.
total_calls
Total call executions created.
completed_calls
Calls that completed.
failed_calls
Calls that failed.
execution_metadata
Execution metadata.
duration_seconds
Elapsed time in seconds.
success_rate
Percentage of calls completed successfully.
calls
Paginated call execution objects.
id
UUID of the call execution.
status
Call status:
pending, queued, ongoing, completed, failed, analyzing, or cancelled. duration
Duration in seconds.
transcript
Conversation transcript.
overall_score
Aggregate eval score.
eval_outputs
Eval results per configured eval.
scenario
Scenario name.
created_at
ISO 8601 creation timestamp.
created_at
ISO 8601 creation timestamp.
scenario_ids
Scenario UUIDs included.
simulator_agent_name
Simulator agent name.
simulator_agent_id
UUID of the simulator agent.
agent_definition_used_name
Agent definition name used.
agent_definition_used_id
UUID of the agent definition used.
calls_attempted
Total calls initiated.
calls_connected_percentage
Percentage of calls that connected.
Errors
401
Invalid or missing credentials.
404
Test execution not found.
500
Unexpected server error.