Skip to main content
GET
/
tools
/
{identifier}
Get a specific custom tool
curl --request GET \
  --url https://demo.enneo.ai/api/mind/tools/{identifier} \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "tool": {
    "name": "MyCustomTool",
    "id": 1,
    "description": "My custom tool that does something",
    "parameters": {},
    "executor": {}
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.enneo.ai/llms.txt

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

Authorizations

Authorization
string
header
required

JWT-based authentication

Path Parameters

identifier
required

The identifier of the tool to get, either the numeric ID or the slug

Response

Successful operation

Data format of Enneo success messages

success
boolean

Operation was successful

Example:

true

tool
object