Skip to main content
GET
/
experiments
/
{exp_id}
/
updates
List experiment updates
curl --request GET \
  --url https://foundry-api-public.adaptyvbio.com/experiments/{exp_id}/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.

Path Parameters

exp_id
string
required

Experiment identifier

Query Parameters

cursor
string

Cursor for pagination (last update ID)

limit
integer<int64>

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

type
string

Filter by update type

Response

Successfully retrieved experiment updates

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