GET
/
updates
Get real-time updates from all experiments
curl --request GET \
  --url https://kq5jp7qj7wdqklhsxmovkzn4l40obksv.lambda-url.eu-central-1.on.aws/updates \
  --header 'Authorization: Bearer <token>'
{
  "next_cursor": "<string>",
  "updates": [
    {
      "description": "<string>",
      "eta": "<string>",
      "experiment_code": "<string>",
      "experiment_id": "<string>",
      "id": "<string>",
      "is_resolved": true,
      "name": "<string>",
      "status_change": "<string>",
      "timestamp": "<string>",
      "update_type": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

cursor
string | null
required

Cursor for pagination - use the last update ID from previous page

limit
integer | null
required

Maximum number of updates to return (default: 50, max: 100)

experiment_id
string | null
required

Filter by specific experiment ID

type
string | null
required

Filter by update type

Response

200 - application/json

Successfully retrieved update list

List of recent updates with keyset pagination support

Contains the most recent updates across all experiments, ordered by ULID (which sorts chronologically).