Agents
Audio
Messaging
- POSTCreate server
- POSTCreate channel
- POSTCreate central channel
- POSTCreate group channel
- GETGet or create DM channel
- POSTSend message to channel
- GETGet channel messages
- GETGet channel details
- GETGet channel info
- GETGet channel participants
- PATCHUpdate channel
- DELDelete channel
- DELDelete channel message
- DELDelete all channel messages
- DELDelete all channel messages by user
- POSTAdd agent to server
- POSTAdd agent to channel
- DELRemove agent from server
- GETGet server agents
- GETGet server channels
- GETGet central servers
- GETGet central server channels
- POSTProcess external message
- POSTIngest messages from external platforms
- POSTSubmit a message to the central messaging system
- POSTMark message processing as complete
Memory
Logs
System
WebSocket
Logs
Get system logs
Retrieve system logs with optional filtering
GET
/
api
/
server
/
logs
Get system logs
Copy
Ask AI
curl --request GET \
--url http://localhost:3000/api/server/logs
Copy
Ask AI
{
"logs": [
{
"level": 123,
"time": 123,
"msg": "<string>",
"agentId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"agentName": "<string>"
}
],
"count": 123,
"total": 123,
"level": "<string>",
"levels": [
"<string>"
]
}
Query Parameters
Timestamp (ms) to get logs from
Available options:
all
, trace
, debug
, info
, warn
, error
, fatal
Required range:
x <= 1000
Response
200
application/json
System logs
The response is of type object
.
Was this page helpful?
Get system logs
Copy
Ask AI
curl --request GET \
--url http://localhost:3000/api/server/logs
Copy
Ask AI
{
"logs": [
{
"level": 123,
"time": 123,
"msg": "<string>",
"agentId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"agentName": "<string>"
}
],
"count": 123,
"total": 123,
"level": "<string>",
"levels": [
"<string>"
]
}
Assistant
Responses are generated using AI and may contain mistakes.