Skip to main content
GET
/
api
/
v1
/
fees
/
configuration
curl --request GET \
  --url https://hpay-api.host-sl.com/api/v1/fees/configuration \
  --header 'api-key: YOUR_API_KEY' \
  --header 'secret-key: YOUR_SECRET_KEY'
{
  "application_id": "2e35e07e-...",
  "transaction_fee_percentage": "1.0",
  "escrow_fee_percentage": "0.0",
  "fee_on_deposit": false,
  "fee_on_transfer": true,
  "fee_on_withdrawal": false,
  "stripe_fee_estimate_percentage": "2.9",
  "stripe_intl_fee_estimate_percentage": "3.9",
  "always_use_intl_estimate": false,
  "monime_fee_estimate_percentage": "1.5"
}
Returns the underlying fee configuration values — the machine-readable counterpart of the fee summary.

Response

application_id
string
Your application’s ID.
transaction_fee_percentage
string
Your application fee percentage applied to fee-enabled transaction types.
escrow_fee_percentage
string
Fee percentage applied when escrow funds are released.
fee_on_deposit
boolean
Whether the application fee is charged on deposits.
fee_on_transfer
boolean
Whether the application fee is charged on transfers.
fee_on_withdrawal
boolean
Whether the application fee is charged on withdrawals.
stripe_fee_estimate_percentage
string
Estimated Stripe processing fee for domestic cards.
stripe_intl_fee_estimate_percentage
string
Estimated Stripe processing fee for international cards.
always_use_intl_estimate
boolean
If true, card estimates always use the international rate.
monime_fee_estimate_percentage
string
Estimated Monime (mobile money) processing fee.
{
  "application_id": "2e35e07e-...",
  "transaction_fee_percentage": "1.0",
  "escrow_fee_percentage": "0.0",
  "fee_on_deposit": false,
  "fee_on_transfer": true,
  "fee_on_withdrawal": false,
  "stripe_fee_estimate_percentage": "2.9",
  "stripe_intl_fee_estimate_percentage": "3.9",
  "always_use_intl_estimate": false,
  "monime_fee_estimate_percentage": "1.5"
}
curl --request GET \
  --url https://hpay-api.host-sl.com/api/v1/fees/configuration \
  --header 'api-key: YOUR_API_KEY' \
  --header 'secret-key: YOUR_SECRET_KEY'