Skip to main content
Payouts are how you turn earned FLOW back into spendable real-world currency. Three rails are supported.

Rails

RailMin payoutFeeSettlement
USDT BEP2010 FLOW1 FLOW + chain fee~5 min
CryptoBot5 FLOW1%Instant
Manual (legal entity)1000 FLOWFree3–5 business days
USDT BEP20 payouts go to a wallet address that the user adds in the Cabinet. CryptoBot payouts go to the user’s linked Telegram. Manual payouts require completing KYB and providing invoice details.

Request a payout

curl -X POST https://api.agentflow.website/me/payouts/request \
  -H "Content-Type: application/json" \
  -H "Cookie: af_session=..." \
  -d '{
    "amountFlow": 100,
    "rail": "usdt_bep20",
    "address": "0x..."
  }'
amountFlow
number
required
Amount to withdraw, in FLOW. Must be ≤ withdrawableFlow from balance endpoint.
rail
string
required
One of usdt_bep20, cryptobot, manual.
address
string
Required for usdt_bep20. Destination wallet.

Response

{
  "payoutId": "pay_01HQ...",
  "amountFlow": 100,
  "feeFlow": 1,
  "netFlow": 99,
  "rail": "usdt_bep20",
  "status": "pending",
  "createdAt": "2026-04-25T12:00:00Z"
}
The FLOW is debited from the balance immediately. The payout enters a pending state and moves to sent once the rail confirms. If the rail rejects (invalid address, insufficient liquidity), the payout reverts and the FLOW is re-credited.

Statuses

StatusMeaning
pendingSubmitted, awaiting rail processing
sentFunds left the platform, awaiting settlement
confirmedRail confirmed delivery
failedRail rejected; FLOW re-credited
canceledUser canceled before send

List payouts

curl https://api.agentflow.website/me/payouts \
  -H "Cookie: af_session=..."
Returns the user’s payout history with statuses and rail details.

Cancel pending

curl -X POST https://api.agentflow.website/me/payouts/pay_01HQ.../cancel \
  -H "Cookie: af_session=..."
Only pending payouts can be canceled. Once sent, cancellation is impossible.
Payouts are irreversible once they reach sent. Double-check the destination wallet before submitting. The platform cannot recover funds sent to an invalid or hostile address.

Compliance

Payouts above platform-defined thresholds may trigger source-of-funds checks. Earned FLOW (creator share, holder rewards, freelance) clears these checks faster than top-up FLOW because the platform has full provenance.