List Agents
List all agents currently registered in the system.
Returns:
| Type |
Description |
Dict[str, Any]
|
dict or list: JSON response with a list of agents (each agent may have fields like agent_id, type, status).
|
Sample usage:
from anoteai import Anote
api_key = 'INSERT_API_KEY_HERE'
anote = Anote(api_key=api_key)
response = anote.list_agents()
print(response)
Response (JSON):
[
{
"agent_id": 123,
"type": "WebSurferAgent",
"status": "active"
},
{
"agent_id": 124,
"type": "FinanceAgent",
"status": "idle"
}
]