Create and manage AI agents
curl -X GET http://localhost:8001/api/v1/agents \ -H "X-API-Key: your-api-key"
{ "agents": [ { "name": "researcher", "role": "Research and analyze information", "llm": "claude", "status": "active", "memory": true, "tools": ["web-search", "wikipedia"] } ] }
curl -X GET http://localhost:8001/api/v1/agents/researcher/status \ -H "X-API-Key: your-api-key"
{ "name": "researcher", "status": "active", "currentTask": "Research AI trends", "tasksCompleted": 42, "uptime": "3d 2h 15m" }
curl -X POST http://localhost:8001/api/v1/agents/researcher/restart \ -H "X-API-Key: your-api-key"
Was this page helpful?