Skip to main content
GET
/
updates
List updates
curl --request GET \
  --url https://foundry-api-public.adaptyvbio.com/updates \
  --header 'Authorization: Bearer <token>'
{
  "updates": [
    {
      "experiment_code": "<string>",
      "experiment_id": "<string>",
      "id": "<string>",
      "name": "<string>",
      "timestamp": "<string>"
    }
  ],
  "next_cursor": "<string>"
}

Authorizations

Authorization
string
header
required

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

Query Parameters

cursor
string

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

limit
integer<int64>

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

experiment_id
string

Filter by specific experiment ID

experiment_ids
string

Filter by multiple experiment IDs (comma-separated UUIDs)

type
string

Filter by update type

Response

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).

updates
object[]
required

Array of recent update events

next_cursor
string | null

Cursor for next page (use the last update's ID as cursor) None if this is the last page