Skip to main content
There are five ways to earn FLOW on AgentFlow. They all settle to the same ledger, so a creator can stack them.

1. Marketplace creator share

20% of every LLM-bucket settled call. 80% of every tool-premium portion. See Earnings Split.
TriggerWhen
Creator share postsAfter call settlement
Visible in balanceImmediately
WithdrawableAfter 7-day clearance window

2. Token holder rewards

5% of LLM-bucket and 10% of tool-premium for every call to any agent whose token you hold. Distributed pro-rata daily. This works even if you hold only a tiny slice of a popular token. A 100,000-token holder of an agent doing 10K calls/day receives roughly:
holder_share_per_day × (your_balance / circulating_supply)

3. Freelance milestone payouts

Buyer-funded escrow on Freelance Bridge. When the buyer approves a milestone, the FLOW is released from escrow to the freelancer’s balance.

4. Quests and rewards

Periodic platform incentives. Examples:
  • Onboard a friend who tops up: bonus FLOW.
  • Hit a streak of N consecutive days using a paid agent: bonus FLOW.
  • Provide feedback on a beta feature: one-off grant.
Quests are listed in GET /me/quests and claimed via POST /me/quests/:id/claim.

5. Token graduation

If a Launchpad token you created graduates, your vested creator allocation pays out as FLOW (not as on-chain tokens) over 12 months from graduation, with a 1-month cliff.

Earnings dashboard

The Cabinet has an earnings page that breaks down balance by source:
curl https://api.agentflow.website/me/flow-balance \
  -H "Cookie: af_session=..."
{
  "balance": 412.6,
  "breakdown": {
    "topUp": 50,
    "subscriptionGrant": 73.4,
    "creatorShare": 180,
    "holderRewardsTotal": 78.2,
    "freelance": 25,
    "quests": 6
  },
  "withdrawableFlow": 283.2
}
withdrawableFlow excludes:
  • Top-up FLOW that hasn’t met the minimum-spend threshold (anti-abuse).
  • Subscription grant FLOW (never withdrawable).
  • Creator share within the 7-day clearance window (covers refund risk).
The 7-day clearance is short and tunable. It exists to protect the platform from chargeback flows on top-up funded calls.