Skip to main content
GET
/
experiments
/
{exp_id}
Retrieve detailed information about a specific experiment.
curl --request GET \
  --url https://kq5jp7qj7wdqklhsxmovkzn4l40obksv.lambda-url.eu-central-1.on.aws/experiments/{exp_id} \
  --header 'Authorization: Bearer <token>'
{
  "antigen_concentrations": [
    123
  ],
  "code": "<string>",
  "created_at": "<string>",
  "description": "<string>",
  "id": "<string>",
  "n_replicates": 1,
  "name": "<string>",
  "parameters": "<any>",
  "result_id": "<string>",
  "sequences": [
    {
      "fasta": "<string>",
      "name": "<string>"
    }
  ],
  "status": "draft",
  "stripe_invoice_id": "<string>",
  "stripe_quote_id": "<string>",
  "target_id": "<string>",
  "target_name": "<string>",
  "target_supplier_url": "<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, track progress, and access results when available.

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

id
string
required

Unique identifier for the experiment (experiment_request.id)

name
string
required

Human-readable name for the experiment

sequences
object[]
required

Array of sequences being tested in the experiment

status
enum<string>
required

Current lifecycle status of the experiment

Available options:
draft,
waiting_for_confirmation,
canceled,
waiting_for_materials,
in_production,
in_review,
done
antigen_concentrations
number[] | null

Antigen concentrations to test (in Molar)

description
string | null

Detailed description of experiment goals and methodology

n_replicates
integer | null

Number of technical replicates for statistical validity

Required range: x >= 0
parameters
any

Experiment-specific parameters (varies by experiment type)

result_id
string | null

Result ID if experiment is complete (null while in progress)

stripe_invoice_id
string | null

Stripe invoice ID if invoiced

stripe_quote_id
string | null

Stripe quote ID if quote was generated

target_id
string | null

Target identifier (e.g., "acro:XYZ" or "material:ABC")

target_name
string | null

Target name for display

target_supplier_url
string | null

URL to target supplier's product page