Skip to main content
GET
/
experiments
/
{exp_id}
/
quote
Get experiment quote
curl --request GET \
  --url https://foundry-api-public.adaptyvbio.com/experiments/{exp_id}/quote \
  --header 'Authorization: Bearer <token>'
{
  "amount_subtotal": 123,
  "amount_total": 123,
  "currency": "<string>",
  "experiment_id": "<string>",
  "quote_id": "<string>",
  "status": "<string>",
  "expires_at": "<string>",
  "updated_at": "<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

Experiment identifier

Response

Quote metadata retrieved successfully

Quote metadata for an experiment.

amount_subtotal
integer<int64>
required

Subtotal amount (in the smallest currency unit)

amount_total
integer<int64>
required

Total amount (in the smallest currency unit)

currency
string
required

ISO currency code (e.g., "usd")

experiment_id
string
required

Experiment identifier

quote_id
string
required

Stripe quote identifier

status
string
required

Stripe quote status

expires_at
string | null

RFC3339 timestamp for when the quote expires (if provided by Stripe)

updated_at
string | null

RFC3339 timestamp for the last update time