curl --request GET \
--url https://{controlPlaneURL}/api/svc/v1/agent-versions \
--header 'Authorization: Bearer <token>'{
"data": [
{
"agentId": "<string>",
"fqn": "<string>",
"manifest": {
"type": "truefoundry-agent",
"name": "<string>",
"description": "<string>",
"model": "<string>",
"collaborators": [
{
"subject": "<string>",
"role_id": "<string>"
}
],
"tags": {},
"model_params": {
"max_tokens": 123,
"reasoning_effort": "none",
"temperature": 123,
"top_p": 123
},
"skills": [
{
"fqn": "<string>",
"preload_skill_md": false
}
],
"mcp_servers": [
{
"name": "<string>",
"deferred": false,
"tools": [
{
"name": "<string>"
}
]
}
],
"instruction": "<string>",
"messages": [
{
"role": "user",
"content": "<string>"
}
],
"variables": {},
"response_format": {
"type": "text"
},
"sandbox": {
"enabled": true
},
"iteration_limit": 99,
"ownedBy": {
"account": "<string>"
}
},
"version": 123,
"id": "<string>",
"metadata": {},
"createdBySubject": {
"subjectId": "<string>",
"subjectType": "user",
"subjectSlug": "<string>",
"subjectDisplayName": "<string>",
"subjectPatName": "<string>",
"subjectControllerName": "<string>",
"subjectExternalIdentitySlug": "<string>"
}
}
],
"pagination": {
"total": 100,
"offset": 0,
"limit": 10
}
}List Agent Versions for the provided agent id
curl --request GET \
--url https://{controlPlaneURL}/api/svc/v1/agent-versions \
--header 'Authorization: Bearer <token>'{
"data": [
{
"agentId": "<string>",
"fqn": "<string>",
"manifest": {
"type": "truefoundry-agent",
"name": "<string>",
"description": "<string>",
"model": "<string>",
"collaborators": [
{
"subject": "<string>",
"role_id": "<string>"
}
],
"tags": {},
"model_params": {
"max_tokens": 123,
"reasoning_effort": "none",
"temperature": 123,
"top_p": 123
},
"skills": [
{
"fqn": "<string>",
"preload_skill_md": false
}
],
"mcp_servers": [
{
"name": "<string>",
"deferred": false,
"tools": [
{
"name": "<string>"
}
]
}
],
"instruction": "<string>",
"messages": [
{
"role": "user",
"content": "<string>"
}
],
"variables": {},
"response_format": {
"type": "text"
},
"sandbox": {
"enabled": true
},
"iteration_limit": 99,
"ownedBy": {
"account": "<string>"
}
},
"version": 123,
"id": "<string>",
"metadata": {},
"createdBySubject": {
"subjectId": "<string>",
"subjectType": "user",
"subjectSlug": "<string>",
"subjectDisplayName": "<string>",
"subjectPatName": "<string>",
"subjectControllerName": "<string>",
"subjectExternalIdentitySlug": "<string>"
}
}
],
"pagination": {
"total": 100,
"offset": 0,
"limit": 10
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Number of items per page
1 <= x <= 100010
Number of items to skip
x >= 00
Agent Id
Was this page helpful?