List Agent Versions
Retrieves a paginated list of versions for an agent definition.
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.
next
URL of the next page.
null if last page. previous
URL of the previous page.
null if first page. results
Array of version objects.
id
UUID of the version.
version_number
Sequential version number.
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.
is_active
Whether this is the 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.