Authorizations
Cookie-based authentication
Path Parameters
The identifier of the tool to get, either the numeric ID or the slug
Get details of a specific custom tool by its ID or slug. These are user-defined functions marked as tools.
curl --request GET \
  --url https://demo.enneo.ai/api/mind/tools/{identifier}{
  "success": true,
  "tool": {
    "name": "MyCustomTool",
    "id": 1,
    "description": "My custom tool that does something",
    "parameters": {},
    "executor": {}
  }
}Cookie-based authentication
The identifier of the tool to get, either the numeric ID or the slug
curl --request GET \
  --url https://demo.enneo.ai/api/mind/tools/{identifier}{
  "success": true,
  "tool": {
    "name": "MyCustomTool",
    "id": 1,
    "description": "My custom tool that does something",
    "parameters": {},
    "executor": {}
  }
}