Get Version Call Executions
Retrieves paginated call executions with evaluation results for an agent version.
GET
https://api.futureagi.com/simulate/agent-definitions/{agent_id}/versions/{version_id}/call-executions/ Authentication
Path parameters
agent_id
The agent definition ID.
version_id
The agent version ID.
Query parameters
limit
Results per page. Defaults to 10.
page
Page number. Defaults to 1.
Response
200 OK count
Total completed call executions with results.
next
URL of the next page.
null if last page. previous
URL of the previous page.
null if first page. results
Array of call execution objects.
id
UUID of the call execution.
service_provider_call_id
External provider call ID.
null if unavailable. session_id
Session identifier.
null if not applicable. status
Call status (only
completed calls returned). duration
Duration in seconds.
null if not recorded. start_time
ISO 8601 start timestamp.
transcript
Array of transcript turn objects.
scenario
Scenario name.
overall_score
Aggregate evaluation score.
null if unscored. eval_outputs
Detailed evaluation results per template.
eval_metrics
Aggregated evaluation metrics.
null if unavailable. scenario_columns
Additional scenario column data.
customer_name
Simulated customer name.
null if not set. call_summary
AI-generated call summary.
null if not generated. ended_reason
Reason the call ended.
null if not recorded. created_at
ISO 8601 creation timestamp.
Errors
401
Invalid or missing API credentials.
404
Agent definition or version not found.
500
Unexpected server error.