POST
/
api
/
v1
/
exchange
/
pairs
curl --request POST \
  --url https://payvra.com/api/v1/exchange/pairs \
  --header 'Authorization: Bearer <token>'
[
  {
    "minAmount": 123,
    "rate": 123,
    "fromCurrency": {
      "symbol": "<string>"
    },
    "toCurrency": {
      "symbol": "<string>"
    }
  }
]

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

200
application/json
Exchange pairs retrieved successfully
minAmount
number

Minimum amount for exchange

rate
number

Current exchange rate

fromCurrency
object
toCurrency
object