Skip to main content
GET
/
virtual-cards
/
calculate-fees
Calculate Card Creation Fees
curl --request GET \
  --url https://getmipay.com/api/v1/virtual-cards/calculate-fees \
  --header 'X-API-KEY: <api-key>'
{
  "success": true,
  "data": {
    "card_grade": "BASIC",
    "card_type": "VISA",
    "currency": "USD",
    "initial_balance": 100,
    "creation_fee": 3.5,
    "total_amount_required": 103.5,
    "other_fees": {
      "monthly_fee": 1.3,
      "top_up_fee": 1.2,
      "withdrawal_fee": 3.3,
      "reject_balance_fee": 1.1
    },
    "funding_limits": {
      "min": 2,
      "max": 10000,
      "currency": "USD"
    },
    "message": "Fees operation calculated successfully"
  }
}

Authorizations

X-API-KEY
string
header
required

Query Parameters

card_grade
enum<string>
required

Grade of the card (BASIC or PREMIUM)

Available options:
BASIC,
PREMIUM
Example:

"BASIC"

card_type
enum<string>
required

Type of the card (VISA or MASTERCARD)

Available options:
VISA,
MASTERCARD
Example:

"VISA"

initial_balance
number<float>
required

Initial balance to load on the card

Required range: x >= 1
Example:

100

Response

Fees calculated successfully

success
boolean
Example:

true

data
object