v1

latestOpenAPI 3.0.02026-07-224537337.5 KB

Get a Quote

Retrieve a single quote by its ID.

get/v2/quote/{id}

Path parameters

idstring required
Example:quote_d243ab2b1de4447d8a046d87fefe58cf

The unique quote ID.

Response

idstring required

A unique identifier for the quote.

status'active' | 'used' | 'expired' required

The current status of the quote.

type'on_ramp' | 'off_ramp' required

The transfer type this quote is for.

customerIdstring required

The customer ID.

expiresAtstring date-time required

The datetime when this quote expires.

createdstring date-time required

The datetime the quote was created.

updatedstring date-time required

The datetime the quote was last updated.

Example response

{
  "id": "quote_d243ab2b1de4447d8a046d87fefe58cf",
  "status": "active",
  "type": "off_ramp",
  "customerId": "customer_d243ab2b1de4447d8a046d87fefe58cf",
  "fees": {
    "integratorFee": {
      "fixedAmount": "0.00",
      "bpsRate": "0",
      "totalAmount": "0.00",
      "currency": "usdc"
    },
    "platformFee": {
      "fixedAmount": "0.00",
      "bpsRate": "20",
      "totalAmount": "2.00",
      "currency": "usdc"
    }
  },
  "source": {
    "network": "polygon",
    "amount": "100.00"
  },
  "destination": {
    "network": "polygon",
    "amount": "545.50",
    "exchangeRate": "5.455"
  },
  "expiresAt": "2025-01-01T00:01:00.000Z",
  "created": "2025-01-01T00:00:00.000Z",
  "updated": "2025-01-01T00:00:30.000Z"
}