Skip to main content
GET
/
api
/
v1
/
fees
/
summary
curl --request GET \
  --url https://hpay-api.host-sl.com/api/v1/fees/summary \
  --header 'api-key: YOUR_API_KEY' \
  --header 'secret-key: YOUR_SECRET_KEY'
{
  "application_id": "2e35e07e-...",
  "deposit": { "fee_enabled": false, "application_fee_percentage": "1.0" },
  "withdrawal": { "fee_enabled": false, "application_fee_percentage": "1.0" },
  "transfer": { "fee_enabled": true, "application_fee_percentage": "1.0" },
  "escrow": { "escrow_fee_percentage": "0.0" },
  "disclaimer": "Provider fees are estimates until settlement."
}
Returns your application’s complete fee structure — deposit, withdrawal, transfer, and escrow — with the configured percentages and which side (you or the end user) pays each fee. Useful for rendering a pricing/fees screen in your app.

Response

application_id
string
Your application’s ID.
deposit
object
Deposit fee summary: whether a fee applies, the percentage, and the provider fee estimates used.
withdrawal
object
Withdrawal (payout/cashout) fee summary.
transfer
object
Wallet-to-wallet transfer fee summary.
escrow
object
Escrow release fee summary.
disclaimer
string
Reminder that provider fees are estimates until settlement.
{
  "application_id": "2e35e07e-...",
  "deposit": { "fee_enabled": false, "application_fee_percentage": "1.0" },
  "withdrawal": { "fee_enabled": false, "application_fee_percentage": "1.0" },
  "transfer": { "fee_enabled": true, "application_fee_percentage": "1.0" },
  "escrow": { "escrow_fee_percentage": "0.0" },
  "disclaimer": "Provider fees are estimates until settlement."
}
curl --request GET \
  --url https://hpay-api.host-sl.com/api/v1/fees/summary \
  --header 'api-key: YOUR_API_KEY' \
  --header 'secret-key: YOUR_SECRET_KEY'