GET
/
updates
curl --request GET \
  --url https://kq5jp7qj7wdqklhsxmovkzn4l40obksv.lambda-url.eu-central-1.on.aws/updates \
  --header 'Authorization: Bearer <token>'
{
  "has_more": true,
  "updates": [
    {
      "experiment_id": "<string>",
      "id": "<string>",
      "message": "<string>",
      "timestamp": "<string>",
      "tracking_id": "<string>",
      "update_type": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Query Parameters

limit
integer

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

Required range: x >= 0
cursor
string

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

Response

200 - application/json

Successfully retrieved update list

List of recent updates with pagination support

Contains the most recent updates across all experiments, ordered by timestamp (newest first).