GET
/
experiments
{exp_id}
curl --request GET \
  --url https://kq5jp7qj7wdqklhsxmovkzn4l40obksv.lambda-url.eu-central-1.on.aws/experiments{exp_id} \
  --header 'Authorization: Bearer <token>'
{
  "created_at": "<string>",
  "description": "<string>",
  "id": "<string>",
  "n_replicates": 1,
  "name": "<string>",
  "parameters": "<any>",
  "result_id": "<string>",
  "sequences": [
    {
      "fasta": "<string>"
    }
  ],
  "status": "draft",
  "target_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 identifier

Response

200
application/json

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.