v1

latestOpenAPI 3.0.3Apache License Version 2.02026-07-2631211285.4 KB
Payout Services

Available Cryptocurrencies

Service only for crypto payout. It will return the possible cryptocurrencies that the account is allowed to transact.

post/v1/payment/payouts/currencies

Headers

Content-Typestring required

The Media type of the body of the request. Default value for payment provider protocol is application/json

Acceptstring required

Acceptable media type(s) for the response. Default value for payment provider protocol is application/json

Request body

currencystring

Currency code (ISO 4217)

Example request

{
  "transaction": {
    "account": "ACCOUNTCODE"
  }
}

Response

Available cryptocurrencies response

Example response

{
  "currencies": [
    {
      "code": "btc",
      "desc": "BITCOIN",
      "price": "23524.3339968278",
      "var": "853.29"
    }
  ]
}