SSE refresh stream for the public client hub
GET
/public/projects/{token}/events
const url = 'https://example.com/api/public/projects/example/events';const options = {method: 'GET'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://example.com/api/public/projects/example/eventsUnauthenticated EventSource stream. Emits hello/refresh/ping events when the hub watermark changes so the portal public page can stay live.
Parameters
Section titled “ Parameters ”Path Parameters
Section titled “Path Parameters ” token
required
string
Responses
Section titled “ Responses ”Text/event-stream
Media type text/event-stream
string
Not found
Media type application/json
object
error
required
Human-readable error message
string
code
Stable machine-readable error code for client branching
string
fieldErrors
First validation message per field path
object
key
additional properties
string
issues
Structured validation issues (Zod)
Array<object>
object
path
required
string
message
required
string
retryAfter
Seconds until rate limit resets (429 responses)
number