Listing quotes
List quotes
GET
/api/public/v1/exchange/quotes
This endpoint lists quotes.
Headers
Content-Type
application/vnd.api+json
Authorization
Bearer <api_token>
URL Parameters
order
string
Order in which the list of transactions should be returned. Can be created_at
.
order_type
string
Order type. Can be either asc
or desc
.
page
number
Page for which you want to return transactions.
per_page
number
Number of transactions per page to return.
Response
Response Body
data.id
string
Quote ID.
data.type
string
Entity type returned. Always exchangeQuotes
.
data.attributes
object
A set of quote attributes.
data.attributes.amountCharged
string
Amount to be debited from your accountChargedId
.
data.attributes.amountChargedCurrency
string
Account charged currency code.
data.attributes.amountReceivedCurrency
string
Account received cyrrency code.
data.attributes.amountReceived
string
Amount to be credited to your accountReceivedId
.
data.attributes.rate
string
Exchange rate.
data.attributes.status
string
One of: pending
, completed
, expired
, or failed
. Note: A transaction with status failed
can be updated to completed
via a support request.
data.attributes.rateCurrency
string
Exchange rate currency code.
data.attributes.exchangeFee
string
Txn fee amount.
data.attributes.exchangeFeeCurrency
string
Fee currency code.
data.attributes.expiresAt
string
Quote expiry timestamp.
Last updated