Skip to main content
GET
/
api
/
ml
/
v1
/
agent-skill-versions
List agent skill versions
curl --request GET \
  --url https://{controlPlaneURL}/api/ml/v1/agent-skill-versions \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "<string>",
      "fqn": "<string>",
      "created_by_subject": {
        "subjectId": "<string>",
        "subjectType": "user",
        "subjectSlug": "<string>",
        "subjectDisplayName": "<string>",
        "subjectPatName": "<string>",
        "subjectControllerName": "<string>",
        "subjectExternalIdentitySlug": "<string>"
      },
      "manifest": {
        "name": "<string>",
        "metadata": {},
        "ml_repo": "<string>",
        "source": {
          "type": "inline",
          "skill_md": "<string>"
        },
        "version": 2,
        "type": "agent-skill"
      },
      "ml_repo_id": "<string>",
      "agent_skill_id": "<string>",
      "created_at": "2023-11-07T05:31:56Z",
      "updated_at": "2023-11-07T05:31:56Z",
      "usage_code_snippets": [
        {
          "display_name": "<string>",
          "language": "<string>",
          "code": "<string>",
          "libraries": [
            "<string>"
          ],
          "icon": "<string>"
        }
      ]
    }
  ],
  "pagination": {
    "total": 100,
    "offset": 0,
    "limit": 10
  }
}

Documentation Index

Fetch the complete documentation index at: https://www.truefoundry.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

fqn
string

FQN filter for agent skill versions

agent_skill_id
string

Parent agent skill artifact ID

ml_repo_id
string

ML Repo ID filter

name
string

Agent skill name filter

version

Version number or 'latest'

offset
integer
default:0

Pagination offset

limit
integer

Page size

Response

List of agent skill versions matching the query with pagination information

data
AgentSkillVersion · object[]
required

List of agent skill versions

pagination
Pagination · object
required

Pagination information