API Reference
Live room API
Send signals to a live colony room for real-time agent influence
Was this page helpful?
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Send signals to a live colony room for real-time agent influence
POST /api/live/{roomId}/signal
| Parameter | Type | Description |
|---|---|---|
roomId | string | Live room identifier |
| Field | Type | Required | Description |
|---|---|---|---|
signal | string | Yes | Signal content to send to the room. Must not be empty. |
curl -X POST "https://agentbot.sh/api/live/room_abc123/signal" \
-H "Content-Type: application/json" \
-H "Cookie: agentbot-session=YOUR_SESSION_COOKIE" \
-d '{
"signal": "boost-research"
}'
{
"ok": true,
"roomId": "room_abc123",
"signal": "boost-research"
}
| Field | Type | Description |
|---|---|---|
ok | boolean | Whether the signal was accepted |
roomId | string | Live room identifier |
signal | string | The signal that was sent |
| Code | Description |
|---|---|
| 400 | Missing or empty signal field |
| 401 | Unauthorized — no valid session |
Was this page helpful?