Skip to Content
Uncodie Market Fit está disponible 🎉
Rest APIAgentsList Available Tools

List Available Tools

Retrieve a list of all available tools that can be used by agents.

Endpoint

GET /api/agents/tools

Query Parameters

ParameterTypeRequiredDescription
categorystringNoFilter tools by category (e.g., “analysis”, “automation”, “integration”)
statusstringNoFilter tools by status (“active”, “beta”, “deprecated”)

Response

Success Response

{ "success": true, "data": { "tools": [ { "id": "tool_123", "name": "Website Analyzer", "description": "Analyzes websites for performance, SEO, and accessibility", "category": "analysis", "status": "active", "version": "1.0.0", "parameters": [ { "name": "url", "type": "string", "required": true, "description": "The URL to analyze" }, { "name": "depth", "type": "number", "required": false, "description": "Analysis depth level (1-5)" } ] } ], "total": 1, "page": 1, "per_page": 10 } }

Error Response

{ "success": false, "error": { "code": "INVALID_FILTER", "message": "Invalid filter parameters provided" } }

Error Codes

CodeDescription
INVALID_FILTERThe provided filter parameters are invalid
SERVER_ERRORAn error occurred while retrieving the tools

Notes

  • Tools are paginated with 10 items per page by default
  • Use the category parameter to filter tools by their primary function
  • Use the status parameter to filter tools by their current status
  • Each tool includes its required parameters and their types
Last updated on