See live project data and real-time changes as they happen
Select a demo scenario to see real-time updates in action:
Monitor resource allocations in real-time
Watch critical path calculation progress
See schedule fragments built in real-time
Send custom events to the channel:
This Construction Intelligence server supports API integration for external AI systems and tools. Connect to this Server-Sent Events (SSE) endpoint:
/api/events/[channel_name]
// JavaScript example
const eventSource = new EventSource('/api/events/system?client_id=YOUR_CLIENT_ID');
eventSource.addEventListener('update', function(event) {
const data = JSON.parse(event.data);
console.log('Received update:', data);
});
// Python example
import requests
import json
import sseclient
def listen_for_events():
response = requests.get('/api/events/system?client_id=YOUR_CLIENT_ID',
stream=True)
client = sseclient.SSEClient(response)
for event in client.events():
data = json.loads(event.data)
print('Received update:', data)
}