v8

latestOpenAPI 3.0.3raw.githubusercontent.com2026-05-2526602.8 MB
Payouts

Request Manual Withdrawal

Request a payout withdrawal, if the frequency is set to manual. Refer to our /payouts/balances endpoint to retrieve the minimum and maximum withdrawal amounts.

post/api/{account}/payouts/request-manual-withdrawal

Request body

amountinteger required

The amount to withdraw. Amount may not be higher than the current balance.

Example request

{
  "amount": 50
}

Response

OR

Example response

{
  "data": {
    "list": [
      {
        "state": "new",
        "rejectReason": null
      }
    ]
  },
  "_meta": {
    "_credits": {
      "used": 1,
      "balance": 1000000028,
      "note": "Always"
    },
    "_cache": {
      "is_cached": false,
      "note": "Cache disabled for this endpoint"
    },
    "_rate_limits": {
      "limit_minute": 10000000,
      "limit_day": 50000,
      "remaining_minute": 9999999,
      "remaining_day": 49998
    }
  }
}