Get real-time updates from all experiments
This endpoint provides a unified feed of all updates across your experiments. Use it to monitor ongoing operations, track progress, and receive notifications about important events in real-time.
Use Cases
- Build real-time dashboards showing experiment activity
- Monitor multiple experiments from a single endpoint
- Track system-wide events and status changes
- Implement notification systems for important events
Update Types
status_change
: Experiment state transitions (started, stopped, failed)data_point
: New data collected or processedprogress
: Progress updates with completion percentageerror
: Error conditions or warningscompletion
: Experiment or task completion notifications
Pagination
Updates are returned in reverse chronological order (newest first). Use cursor-based pagination to retrieve historical updates:
- First request: omit cursor parameter
- Subsequent requests: use the last updateβs ID as cursor
- Continue until
has_more
is false
Filtering
To filter updates for a specific operation, note the tracking_id
and use the /updates/{tracking_id}
endpoint.
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Query Parameters
Maximum number of updates to return (default: 50, max: 100)
x >= 0
Cursor for pagination - use the last update ID from previous page
Response
Successfully retrieved update list
List of recent updates with pagination support
Contains the most recent updates across all experiments, ordered by timestamp (newest first).