GET
/
experiments
List all experiments accessible to the authenticated user.
curl --request GET \
  --url https://kq5jp7qj7wdqklhsxmovkzn4l40obksv.lambda-url.eu-central-1.on.aws/experiments \
  --header 'Authorization: Bearer <token>'
{
  "experiments": [
    {
      "code": "<string>",
      "created_at": "<string>",
      "id": "<string>",
      "n_replicates": 1,
      "name": "<string>",
      "status": "draft",
      "stripe_invoice_id": "<string>",
      "stripe_quote_id": "<string>",
      "target_id": "<string>",
      "target_name": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Query Parameters

limit
integer

Maximum number of items to return (default: 50)

offset
integer

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

Response

200 - application/json

Successfully retrieved experiment list

Container for a list of experiment summaries.

Returns experiments accessible to the authenticated user.