Quote payment
Endpoint for getting CRYPTO to FIAT payment quote
Get payment quote
POST https://papi.swapin.com/api/sell/quote
Request Body
Name
Type
Description
coin*
String
Coin symbol
sum_eur*
Decimal
Total sum of payment in EUR
currency*
String
Fiat currency (EUR)
{
"ok": true,
"transaction": {
"currency": "EUR",
"sum_currency": 93.05,
"fees_currency": 1.26,
"bank_fees_currency": 0.37,
"network_fees_currency": 0,
"discount_currency": 0,
"total_currency": 94.68,
"bonus_currency": 0,
"payout_sum_currency": 93.05,
"coin": "BTC",
"total_coin": 0.001,
"rate": 102152.47
}
}{
"message": "The given data was invalid.",
"errors": {
"coin": [
"The coin field is required."
],
"sum_eur": [
"The sum field is required."
],
"error": [
"Minimum XTZ amount is: 10.228435"
]
}
}{
"message": "No access to make transactions yet"
}Last updated