FruxonDocs
IntegrationsSkills

Lists all skills available in the workspace, including built-in and custom skills.

Returns every skill visible to the tenant — built-in skills shipped with Fruxon plus skills the tenant has authored or imported. Use the returned skill IDs when configuring an agent's allowed skill set; agents activate skills mid-conversation by matching the user request against the skill's description.

GET
/v1/tenants/{tenant}/skills
AuthorizationBearer <token>

JWT Authorization header using the Bearer scheme. Enter 'Bearer' [space] and then your token.

In: header

Path Parameters

tenant*string

The tenant identifier

Response Body

curl -X GET "https://api.fruxon.com/v1/tenants/string/skills"
[
  {
    "id": "string",
    "displayName": "string",
    "description": "string",
    "instructions": "string",
    "tools": [
      {
        "integrationId": "string",
        "id": "string"
      }
    ],
    "resources": [
      {
        "assetId": "string",
        "description": "string",
        "vectorized": false
      }
    ],
    "type": "SYSTEM",
    "createdAt": 0,
    "modifiedAt": 0
  }
]
{
  "type": "string",
  "title": "string",
  "status": 0,
  "detail": "string",
  "instance": "string",
  "property1": null,
  "property2": null
}
Empty
{
  "type": "string",
  "title": "string",
  "status": 0,
  "detail": "string",
  "instance": "string",
  "property1": null,
  "property2": null
}