Skip to main content
GET
/
api
/
payouts
/
amount-limits
Get amount limits
curl --request GET \
  --url https://business.madhousewallet.com/api/payouts/amount-limits \
  --header 'Authorization: Bearer <token>'
{
  "min_amount": 10,
  "max_amount": 50000
}

Authorizations

Authorization
string
header
required

Pass your API key as a Bearer token: Authorization: Bearer mw_live_<keyId>_<secret>

Response

Amount limits for the authenticated account

min_amount
number | null
required

Minimum USD amount allowed per transfer. null = no minimum configured.

Example:

10

max_amount
number | null
required

Maximum USD amount allowed per transfer. null = no maximum configured.

Example:

50000