Skip to main content
GET
/
experiments
/
{exp_id}
Get experiment
curl --request GET \
  --url https://foundry-api-public.adaptyvbio.com/experiments/{exp_id} \
  --header 'Authorization: Bearer <token>'
{
  "code": "<string>",
  "created_at": "<string>",
  "experiment_spec": {
    "experiment_type": "affinity",
    "antigen_concentrations": [
      123
    ],
    "method": "bli",
    "n_replicates": 1,
    "parameters": "<unknown>",
    "sequences": {},
    "target_id": "<string>"
  },
  "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.

Path Parameters

exp_id
string
required

Unique experiment request identifier

Response

Successfully retrieved experiment details

Detailed information about a specific experiment.

Contains all data needed to understand experiment configuration and track progress.

code
string
required

Unique experiment code (e.g., "EXP-2024-001") or request ID if not fulfilled

created_at
string
required

ISO 8601 timestamp of experiment creation

experiment_spec
object
required

Unified experiment specification (type, target, sequences, params)

experiment_url
string
required

URL to view the experiment in the Foundry portal

id
string
required

Unique identifier for the experiment

name
string
required

Human-readable name for the experiment

results_status
enum<string>
required

Indicates whether results are available for this experiment

Available options:
none,
partial,
all
status
enum<string>
required

Current lifecycle status of the experiment

Available options:
draft,
waiting_for_confirmation,
canceled,
waiting_for_materials,
in_production,
quote_sent,
in_queue,
data_analysis,
in_review,
done
stripe_invoice_id
string | null

Stripe invoice ID if invoiced

stripe_quote_id
string | null

Stripe quote ID if quote was generated