curl --request GET \ --url 'https://api.yourapp.com/api/tools?projectId=proj_123&limit=20&offset=0' \ --header 'Authorization: Bearer <token>'
{ "success": true, "tools": [ { "id": "tool_123", "name": "Data Validator", "description": "Validates input data", "language": "javascript", "enabled": true, "createdAt": "2024-01-15T10:30:00Z" }, { "id": "tool_456", "name": "Email Parser", "description": "Parses email content", "language": "python", "enabled": true, "createdAt": "2024-01-14T09:20:00Z" } ], "total": 42, "hasMore": true, "nextOffset": 20, "message": "Tools retrieved successfully" }
Retrieves all tools for a project with pagination