Retrieve a list of available built-in Freddy AI system tools with their capabilities and configuration options.
Supports both authentication methods:
- Bearer token: Use Authorization header with user token
- API key: Use X-API-Key header with organization API key
include_capabilities boolean optional ยท Defaults to true
Include detailed tool capabilities and parameters in the response.
category string optional
Filter tools by category. Values: search, computation, generation, automation, analysis.
model_compatibility string optional
Filter tools compatible with specific model types. Values: text, vision, voice, multimodal.
visible_in_ui boolean optional
Filter by UI visibility (true = only UI-visible tools, false = only hidden tools, omitted = all).
A JSON object containing:
tools(array): List of System Tool objects.total_count(integer): Total number of tools returned.
Each tool object includes:
- Basic information (id, name, description, category)
- Configuration details (toolKey, defaultProvider)
- Capabilities (modes, parameters, model compatibility) when
include_capabilities=true - Metadata (isPreview, createdAt, updatedAt)
- Bash
- Python
- JavaScript
curl "https://api.aitronos.com/v1/toolbox/system-tools" \
-H "X-API-Key: $FREDDY_API_KEY"Response:
{
"success": true,
"data": {}
}