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

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

agent_id UUID Required

The agent definition ID.

version_id UUID Required

The agent version ID.

Query parameters

limit integer Optional

Results per page. Defaults to 10.

page integer Optional

Page number. Defaults to 1.

Response

200 OK
count integer
Total completed call executions with results.
next string
URL of the next page. null if last page.
previous string
URL of the previous page. null if first page.
results array
Array of call execution objects.
id string
UUID of the call execution.
service_provider_call_id string
External provider call ID. null if unavailable.
session_id string
Session identifier. null if not applicable.
status string
Call status (only completed calls returned).
duration number
Duration in seconds. null if not recorded.
start_time datetime
ISO 8601 start timestamp.
transcript array
Array of transcript turn objects.
scenario string
Scenario name.
overall_score number
Aggregate evaluation score. null if unscored.
eval_outputs object
Detailed evaluation results per template.
eval_metrics object
Aggregated evaluation metrics. null if unavailable.
scenario_columns object
Additional scenario column data.
customer_name string
Simulated customer name. null if not set.
call_summary string
AI-generated call summary. null if not generated.
ended_reason string
Reason the call ended. null if not recorded.
created_at datetime
ISO 8601 creation timestamp.

Errors

401 Unauthorized Optional

Invalid or missing API credentials.

404 Not Found Optional

Agent definition or version not found.

500 Internal Server Error Optional

Unexpected server error.

GET /
Authentication
REQUEST
 
RESPONSE