Authorizations
Vida API Token
Path Parameters
Agent Id to inspect
Query Parameters
If true the response includes the entire snapshot JSON for each version.
curl --request GET \
--url https://api.vida.dev/api/v2/agent/{agentId}/versions
{
"success": true,
"versions": [
{
"title": "Auto-1750194180352",
"versionId": 1750194180352,
"snapshot": {}
}
]
}
Return the stored version snapshots for an agent. Pass ?includeData=true to embed full snapshots.
curl --request GET \
--url https://api.vida.dev/api/v2/agent/{agentId}/versions
{
"success": true,
"versions": [
{
"title": "Auto-1750194180352",
"versionId": 1750194180352,
"snapshot": {}
}
]
}
Vida API Token
Agent Id to inspect
If true the response includes the entire snapshot JSON for each version.