List Agent Versions
Retrieve a paginated list of all versions for a given agent definition. Supports limit and page parameters. Returns version metadata and commit history.
GET
https://api.futureagi.com/simulate/agent-definitions/{agent_id}/versions/ Authentication
Path parameters
agent_id
The agent definition ID.
Query parameters
limit
Results per page. Defaults to 10.
page
Page number. Defaults to 1.
Response
200 OK count
Total versions for this agent definition.
next
URL of the next page, or
null. previous
URL of the previous page, or
null. results
Array of agent version objects.
id
UUID of the version.
version_number
Sequential version number starting from
1. version_name
Short version name (e.g.
v1, v2). version_name_display
Formatted display name.
status
Lifecycle status:
draft, active, archived, or deprecated. status_display
Human-readable status label.
score
Evaluation score (
0.0–10.0). null if untested. test_count
Total test executions run.
pass_rate
Test pass percentage (
0–100). null if untested. description
Version description.
commit_message
Commit message for this version.
is_active
Whether this is the currently active version.
is_latest
Whether this is the most recent version.
created_at
ISO 8601 creation timestamp.
Errors
401
Invalid or missing API credentials.
404
Agent definition not found.
500
Unexpected server error.