curl --request GET \
--url https://getmipay.com/api/v1/virtual-cards/fees \
--header 'X-API-KEY: <api-key>'{
"success": true,
"data": {
"fees": [
{
"id": 1,
"card_grade": "BASIC",
"card_type": "VISA",
"currency": "USD",
"creation_fee": 3.5,
"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"
},
"is_active": true,
"last_updated": "2024-01-15T10:30:00Z"
}
],
"total_fee_configurations": 4,
"currencies_available": [
"USD"
],
"card_types_available": [
"VISA",
"MASTERCARD"
],
"card_grades_available": [
"BASIC",
"PREMIUM"
],
"timestamp": "2023-11-07T05:31:56Z",
"message": "Fees operaton successfully retrieved"
}
}Retrieve all active virtual card fee configurations. Fees shown are total amounts including both Soleaspay and GetMiPay fees.
curl --request GET \
--url https://getmipay.com/api/v1/virtual-cards/fees \
--header 'X-API-KEY: <api-key>'{
"success": true,
"data": {
"fees": [
{
"id": 1,
"card_grade": "BASIC",
"card_type": "VISA",
"currency": "USD",
"creation_fee": 3.5,
"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"
},
"is_active": true,
"last_updated": "2024-01-15T10:30:00Z"
}
],
"total_fee_configurations": 4,
"currencies_available": [
"USD"
],
"card_types_available": [
"VISA",
"MASTERCARD"
],
"card_grades_available": [
"BASIC",
"PREMIUM"
],
"timestamp": "2023-11-07T05:31:56Z",
"message": "Fees operaton successfully retrieved"
}
}