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
Successful operation
Data format of Enneo success messages
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": {}
}
}