Skip to main content
GET
/
api
/
v1
/
quotes
/
{quote_id}
Get quote
curl --request GET \
  --url https://foundry-api-public.adaptyvbio.com/api/v1/quotes/{quote_id} \
  --header 'Authorization: Bearer <token>'
{
  "created_at": "2023-11-07T05:31:56Z",
  "currency": "<string>",
  "id": "<string>",
  "line_items": [
    {
      "description": "<string>",
      "quantity": 123,
      "total_cents": 123,
      "unit_price_cents": 123
    }
  ],
  "notes": "<string>",
  "organization_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "organization_name": "<string>",
  "quote_number": "<string>",
  "status": "draft",
  "stripe_quote_url": "https://billing.example.com/quotes/qt_1234567890",
  "subtotal_cents": 123,
  "tax_cents": 123,
  "terms_and_conditions": "<string>",
  "total_cents": 123,
  "valid_until": "2023-11-07T05:31:56Z"
}

Authorizations

Authorization
string
header
required

Biscuit-based bearer token. Obtain tokens from the Adaptyv Portal or via the /tokens endpoint. Tokens encode organization membership and role-based capabilities; the API verifies the token's cryptographic signature and authorization claims before processing requests. Use /tokens/attenuate to create restricted tokens for delegation.

Path Parameters

quote_id
string
required

Unique identifier of the quote to retrieve

Response

Quote details

Full quote details including itemized pricing and terms.

Review the line items, totals, and expiration before accepting.

created_at
string<date-time>
required

ISO 8601 timestamp when quote was created

currency
string
required

ISO 4217 currency code

id
string
required

Unique quote identifier

line_items
object[]
required

Itemized list of products/services being quoted

notes
string
required

Additional notes or special pricing information

organization_id
string<uuid>
required

Organization ID that this quote is prepared for

organization_name
string
required

Name of the organization receiving the quote

quote_number
string
required

Human-readable quote number for reference

status
enum<string>
required

Current quote status from Stripe

Available options:
draft,
open,
accepted,
canceled,
stale
stripe_quote_url
string
required

Quote reference URL (may require provider account access).

Example:

"https://billing.example.com/quotes/qt_1234567890"

subtotal_cents
integer<int64>
required

Sum of all line items before tax, in smallest currency unit (cents)

tax_cents
integer<int64>
required

Estimated tax amount in smallest currency unit (cents); may be adjusted on final invoice

terms_and_conditions
string
required

Legal terms and conditions for this quote

total_cents
integer<int64>
required

Total quoted amount (subtotal + tax) in smallest currency unit (cents)

valid_until
string<date-time>
required

ISO 8601 timestamp when quote expires