Create Run Test
Create a new test run with scenarios, agent definition, eval configs, and optional tool evaluation. Returns the run test UUID, name, and associated scenario list.
https://api.futureagi.com/simulate/run-tests/create/ Authentication
Request body
Name for the test run. Must be unique within your organization and cannot exceed 255 characters.
Optional free-text description of the test run.
Array of scenario UUIDs to execute against. Must contain at least one valid scenario ID.
UUID of the agent definition to evaluate.
Array of existing evaluation configuration UUIDs to associate with this test run.
Array of inline evaluation configuration objects to create and associate. Each object must include template_id, name, config, and mapping.
Array of dataset row UUIDs to restrict execution to specific data entries. If omitted, all rows are included.
When true, evaluates correctness of tool calls made by the agent. Defaults to false.
Optional UUID of a session to replay. When provided, execution replays the specified session.
Response
201 CreatedUUID of the newly created test run.
Name of the test run.
Description of the test run, or empty string if none provided.
UUID of the associated agent definition.
UUID of the specific agent version, or null if using the active version.
Detailed agent definition object, or null.
Source type identifier (e.g. "agent_definition").
Human-readable source type label (e.g. "Agent Definition").
Array of linked scenario UUIDs.
Array of detailed scenario objects.
Array of dataset row UUIDs associated with this test run.
UUID of the simulator agent, or null.
Detailed simulator agent object, or null.
Array of evaluation configuration UUIDs.
Array of detailed evaluation configuration objects.
Array of detailed evaluation result objects.
UUID of the owning organization.
Whether tool evaluation is enabled.
ISO 8601 creation timestamp.
ISO 8601 last-modified timestamp.
ISO 8601 timestamp of the most recent execution, or null.
Whether the test run has been soft-deleted.
ISO 8601 timestamp of soft-deletion, or null.
Errors
Invalid or missing required fields, such as empty scenarioIds, invalid UUIDs, or malformed evaluationsConfig.
Missing or invalid X-Api-Key or X-Secret-Key headers.
Organization not found, or one or more referenced resources (agent definition, scenarios, eval configs) do not exist.
Unexpected server error. Contact support if it persists.