v1

latestOpenAPI 3.1.02026-08-044257268.7 KB
Wallet

Get top-up configuration

Fees and limits for wallet top-ups, so the frontend does not hardcode values.

get/v1/wallet/topup

Response

Top-up fees and limits

minAmountnumber required

Minimum top-up amount in dollars.

maxAmountnumber

Maximum top-up amount in dollars. Omitted when no app-level cap is configured.

currency'USD' required

Top-up currency (currently always USD).

Example response

{
  "minAmount": 5,
  "maxAmount": 1000,
  "processingFee": {
    "rate": 0.05,
    "description": "Processing fee (5%)"
  }
}