Stream build events (SSE)
/builds/{id}/events
Streams build events as Server-Sent Events. Events include:
log: Build log lines with timestamp and contentstatus: Build status changes (queued→building→pushing→ready/failed)heartbeat: Keep-alive events sent every 30s to prevent connection timeouts
Returns existing logs as events, then continues streaming if follow=true.
Path Parameters
id: string
Query Parameters
follow: optional boolean
Continue streaming new events after initial output
Returns
Stream build events (SSE)
curl http://localhost:8080/builds/$ID/events \
-H "Authorization: Bearer $HYPEMAN_API_KEY"