FruxonDocs
IntegrationsSkills

Retrieves a specific skill by ID.

Returns the full skill definition — instructions, tool list, and metadata — for the given ID. Returns 404 if the skill does not exist or belongs to another tenant. Built-in skills are returned the same shape as custom ones, but their `id` is a stable well-known string rather than a GUID.

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

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

In: header

Path Parameters

skill*string

The unique identifier of the skill.

tenant*string

The tenant identifier

Response Body

curl -X GET "https://api.fruxon.com/v1/tenants/string/skills/string"
{
  "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
}
Empty
Empty
{
  "type": "string",
  "title": "string",
  "status": 0,
  "detail": "string",
  "instance": "string",
  "property1": null,
  "property2": null
}