v1
latestOpenAPI 3.0.02026-07-224537337.5 KBList Quotes
List quotes for the application, optionally filtered by customer ID and/or status.
get/v2/quote
Query parameters
pagestring required
Page number of the list (default: 1)
limitstring required
Number of items per page (default: 10)
customerIdstring
Example:customer_3faa484998f44cfead9668608b9ee1f5
Filter quotes by customer ID.
status'active' | 'used' | 'expired'
Example:active
Filter quotes by status.
Response
Example response
{
"page": 1,
"limit": 10,
"total": 1,
"totalPages": 1,
"data": [
{
"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"
}
]
}