Creates a new experiment request for the Adaptyv Foundry platform.
The payload captures the target (from the catalog), antibody sequences, replicate plan, assay parameters, optional metadata, and an optional webhook for notifications. By default, experiments are created in Draft status so clients can review inputs before submission.
Set skip_draft: true to bypass Draft status and submit directly for processing.
This is useful for automated pipelines with pre-validated payloads that
don’t require manual review. The experiment will be created in
“Waiting for confirmation” status instead of Draft.
API-originated experiments are automatically assigned to the organization’s API submissions project for traceability.
| Field | Type | Description |
|---|---|---|
experiment_type | string | Required. affinity, screening, thermostability, fluorescence, or expression |
method | string | Measurement method: bli (default) or spr |
target_id | string | Target UUID from the catalog. Required for binding experiments. |
sequences | object | Required. Map of sequence name to amino acid string |
n_replicates | integer | Recommended. Technical replicates (min 1, default 3) |
antigen_concentrations | array | Required for affinity. Molar concentrations, e.g. [1e-9, 1e-8] |
parameters | object | Optional. Experiment-specific settings |
The sequences field accepts two formats:
Simple format — amino acid string only:
"sequences": {
"seq1": "EVQLVESGGGLVQPGGSLRLSCAAS"
}
Object format — with metadata:
"sequences": {
"seq1": {
"aa_string": "EVQLVESGGGLVQPGGSLRLSCAAS",
"control": false,
"metadata": { "type": "scfv", "tag_location": "C" }
}
}
Full kinetic characterization measuring on/off rates and KD.
Target ID c383cc1d-fe22-5dbf-953c-378bc073019d is Human PD-L1 from the catalog.
{
"name": "PD-L1 affinity panel",
"experiment_spec": {
"experiment_type": "affinity",
"method": "bli",
"target_id": "c383cc1d-fe22-5dbf-953c-378bc073019d",
"sequences": {
"pembrolizumab_vh": "QVQLVQSGVEVKKPGASVKVSCKASGYTFTNYYMYWVRQAPGQGLEWMGGINPSNGGTNFNEKFKNRVTLTTDSSTTTAYMELKSLQFDDTAVYYCARRDYRFDMGFDYWGQGTTVTVSS",
"pembrolizumab_vl": "EIVLTQSPATLSLSPGERATLSCRASKGVSTSGYSYLHWYQQKPGQAPRLLIYLASYLESGVPARFSGSGSGTDFTLTISSLEPEDFAVYYCQHSRDLPLTFGGGTKVEIK"
},
"n_replicates": 3,
"antigen_concentrations": [1e-9, 1e-8, 1e-7, 1e-6]
},
"webhook_url": "https://example.com/webhook"
}
High-throughput yes/no binding assessment using SPR.
{
"name": "Library screening round 1",
"experiment_spec": {
"experiment_type": "screening",
"method": "spr",
"target_id": "c383cc1d-fe22-5dbf-953c-378bc073019d",
"sequences": {
"clone_A1": "EVQLVESGGGLVQPGGSLRLSCAASGFTFSSYAMSWVRQAPGKGLEWVSAISGSGGSTYYADSVKGRFTISRDNSKNTLYLQMNSLRAEDTAVYYCAKDRLSITIRPRYYGLDVWGQGTLVTVSS",
"clone_A2": "QVQLVQSGAEVKKPGASVKVSCKASGYTFTSYGISWVRQAPGQGLEWMGWISAYNGNTNYAQKLQGRVTMTTDTSTSTAYMELRSLRSDDTAVYYCARDVGYCTDYSCYFDYWGQGTLVTVSS",
"clone_A3": "EVQLLESGGGLVQPGGSLRLSCAASGFTFSTYAMSWVRQAPGKGLEWVSSISSGGSYIYYADSVKGRFTISRDNAKNSLYLQMNSLRAEDTAVYYCARRPWGYYALDIWGQGTTVTVSS"
},
"n_replicates": 2
}
}
Measures melting temperature (Tm) via differential scanning fluorimetry. No target required.
{
"name": "Lead candidates stability",
"experiment_spec": {
"experiment_type": "thermostability",
"sequences": {
"candidate_1": "QVQLVQSGAEVKKPGASVKVSCKASGYTFTSYAMHWVRQAPGQRLEWMGWINAGNGNTKYSQKFQGRVTITRDTSASTAYMELSSLRSEDTAVYYCARAKFGATGAFDIWGQGTMVTVSS",
"candidate_2": "EVQLVESGGGLVQPGGSLRLSCAASGFNIKDTYIHWVRQAPGKGLEWVARIYPTNGYTRYADSVKGRFTISADTSKNTAYLQMNSLRAEDTAVYYCSRWGGDGFYAMDYWGQGTLVTVSS"
},
"n_replicates": 3,
"parameters": {
"buffer": "PBS",
"ph": 7.4
}
}
}
Fluorescence-based protein characterization measuring intrinsic properties. No target required.
{
"name": "Fluorescence characterization",
"experiment_spec": {
"experiment_type": "fluorescence",
"sequences": {
"variant_1": "QVQLVQSGAEVKKPGASVKVSCKASGYTFTSYDINWVRQATGQGLEWMGWMNPNSGNTGYAQKFQGRVTMTRDTSISTAYMELRSLRSDDTAVYYCARGGFYGSTIWFDYWGQGTLVTVSS",
"variant_2": "EVQLVESGGGLVQPGGSLRLSCAASGFTFSSYWMSWVRQAPGKGLEWVANIKQDGSEKYYVDSVKGRFTISRDNAKNSLYLQMNSLRAEDTAVYYCARDRYGNYVDYWGQGTLVTVSS"
},
"n_replicates": 3
}
}
Protein expression screening measuring yield and quality. No target required.
{
"name": "Expression screening",
"experiment_spec": {
"experiment_type": "expression",
"sequences": {
"construct_A": "QVQLVQSGAEVKKPGASVKVSCKASGYTFTSYGISWVRQAPGQGLEWMGWISAYNGNTNYAQKLQGRVTMTTDTSTSTAYMELRSLRSDDTAVYYCARDVGYCTDYSCYFDYWGQGTLVTVSS",
"construct_B": "EVQLVESGGGLVQPGGSLRLSCAASGFNIKDTYIHWVRQAPGKGLEWVARIYPTNGYTRYADSVKGRFTISADTSKNTAYLQMNSLRAEDTAVYYCSRWGGDGFYAMDYWGQGTLVTVSS"
},
"n_replicates": 2
}
}
Bypass Draft status and submit directly for processing:
{
"name": "Pre-validated batch",
"skip_draft": true,
"experiment_spec": {
"experiment_type": "thermostability",
"sequences": {
"seq1": "EVQLVESGGGLVQPGGSLRLSCAASGFTFSSYAMSWVRQAPGKGLEWVSAISGSGGSTYYADSVKGRFTISRDNSKNTLYLQMNSLRAEDTAVYYCAKDRLSITIRPRYYGLDVWGQGTLVTVSS"
},
"n_replicates": 2
}
}
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Request payload for creating or updating an experiment.
Supports upsert semantics: omit id to create a new experiment, or provide
an existing experiment's UUID to update it. Created experiments start in
Draft status. Updates replace sequences entirely rather than merging.
Structured experiment definition (type, target, sequences, parameters)
Human-readable name for the experiment
Experiment UUID for updates. Omit to create a new experiment.
Bypass Draft status and submit directly for processing.
When true, the experiment is created in "Waiting for confirmation"
status instead of Draft, skipping the manual review step. Use this for
automated pipelines with pre-validated payloads.
When an experiment is submitted with skip_draft: true and the target
has existing inventory materials, those materials are automatically
linked to expedite processing.
URL to which experiment status updates will be POSTed