Quote buy order
Endpoint for getting crypto buy order quote
Get buy order quote
POST https://papi.swapin.com/api/buy/quote
Request Body
Name
Type
Description
to_coin*
String
Coin symbol
from_amount*
Decimal
Total sum of payment in EUR
from_currency*
String
Fiat currency (EUR)
{
"ok": true,
"exchange_order": {
"fee_amount": 2.5,
"from_amount": 100,
"from_currency": "EUR",
"network_fee_amount": 5,
"partner_markup_eur": 0,
"rate_indicative": 2628.12,
"to_amount_indicative": 0.03519626,
"to_coin": "ETH"
}
}
{
"message": "The given data was invalid.",
"message_detail": "Minimum XTZ amount is: 10.228435",
"errors": {
"to_coin": [
"The to_coin field is required."
],
"from_amount": [
"The from_amount field is required."
],
"from_currency": [
"The from_currency field is required."
],
"from_amount": [
"Invalid value"
]
}
}Last updated