Skip to main content
POST
/
newPayout
newPayout
curl --request POST \
  --url https://alphainsider.com/api/newPayout \
  --header 'Authorization: <authorization>' \
  --header 'Content-Type: application/json' \
  --data '{
  "amount": 123
}'
{
  "success": true,
  "response": {
    "payout_id": "JbHHi_5IK4bQvVcVDmXBa",
    "provider": "stripe",
    "user_id": "user_1",
    "type": "bank",
    "amount": "972",
    "fee": "28",
    "destination": {
      "address": "6789"
    },
    "status": "pending",
    "updated_at": "2024-02-05T16:20:42.088Z",
    "created_at": "2024-02-05T16:20:42.088Z"
  }
}

Headers

Authorization
string<JWT>
required

User API token.

Body

application/json
amount
number<int>
required

Amount to withdraw in cents. See minimum amount

Response

Request was successful.