Seller DashboardPayoutCopy pageRequest a payout of your earningsPOST https://api.soul.mds.markets/v1/soul/me/payout Prerequisites Linked wallet (see Link Wallet) Minimum $10 pending balance Authentication Requires soul key in Authorization header. Request Body FieldTypeRequiredDescriptionamountnumberNoAmount to withdraw (min $10). Omit to withdraw entire balance. Example Requests Withdraw Specific AmountWithdraw All$curl -X POST https://api.soul.mds.markets/v1/soul/me/payout \> -H "Authorization: Bearer soul_xxx..." \> -H "Content-Type: application/json" \> -d '{"amount": 50.00}' Response FieldTypeDescriptionsuccessbooleanRequest successpayout.idstringPayout IDpayout.amountnumberAmount requestedpayout.statusstringStatus (pending) 1{2 "success": true,3 "payout": {4 "id": "payout_xyz789",5 "amount": 50.00,6 "status": "pending"7 },8 "message": "Payout request submitted. Processing typically takes 1-3 business days."9} Payout Status Values StatusDescriptionpendingRequest receivedprocessingBeing sentcompletedSent to walletfailedError occurred Errors StatusErrorDescription400wallet_not_linkedNo wallet linked400payout_failedInsufficient balance or other error401unauthorizedInvalid soul key