Skip to main content
Get a Quote
Fetch the current state of a single quote. Useful when polling for status changes (activeused or activeexpired) before triggering downstream logic in your application.

Authorizations

Authorization
string
header
required

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

Path Parameters

id
string
required

The unique quote ID.

Pattern: ^quote_[a-z0-9]+$
Example:

"quote_d243ab2b1de4447d8a046d87fefe58cf"

Response

id
string
required

A unique identifier for the quote.

Pattern: ^quote_[a-z0-9]+$
Example:

"quote_d243ab2b1de4447d8a046d87fefe58cf"

status
enum<string>
required

The current status of the quote.

Available options:
active,
used,
expired
Example:

"active"

type
enum<string>
required

The transfer type this quote is for.

Available options:
on_ramp,
off_ramp
Example:

"off_ramp"

customerId
string
required

The customer ID.

Example:

"customer_d243ab2b1de4447d8a046d87fefe58cf"

fees
object
required
source
object
required
destination
object
required
expiresAt
string<date-time>
required

The datetime when this quote expires.

Example:

"2025-01-01T00:01:00.000Z"

created
string<date-time>
required

The datetime the quote was created.

Example:

"2025-01-01T00:00:00.000Z"

updated
string<date-time>
required

The datetime the quote was last updated.

Example:

"2025-01-01T00:00:30.000Z"

Last modified on June 18, 2026