Skip to main content
GET
/
experiments
List experiments
curl --request GET \
  --url https://foundry-api-public.adaptyvbio.com/experiments \
  --header 'Authorization: Bearer <token>'
{
  "experiments": [
    {
      "code": "<string>",
      "created_at": "<string>",
      "experiment_type": "affinity",
      "experiment_url": "<string>",
      "id": "<string>",
      "name": "<string>",
      "results_status": "none",
      "status": "draft",
      "stripe_invoice_id": "<string>",
      "stripe_quote_id": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Query Parameters

limit
integer<int64>

Maximum number of items to return (default: 50)

offset
integer<int64>

Number of items to skip (default: 0)

leq(created_at)
string

Filter by created_at <= value

geq(created_at)
string

Filter by created_at >= value

lss(created_at)
string

Filter by created_at < value

gtr(created_at)
string

Filter by created_at > value

equ(created_at)
string

Filter by created_at = value

Case-insensitive search across name, code, and target

status
string

Comma-separated list of status names (matches portal labels)

state
string

Comma-separated list of higher-level states

project_id
string

Filter by project UUID

leq(report_eta)
string

Filter by report_eta <= value

geq(report_eta)
string

Filter by report_eta >= value

lss(report_eta)
string

Filter by report_eta < value

gtr(report_eta)
string

Filter by report_eta > value

equ(report_eta)
string

Filter by report_eta = value

Response

Successfully retrieved experiment list

Container for a list of experiment summaries.

Returns experiments accessible to the authenticated user.

experiments
object[]
required

Array of experiment summaries