Subscriptions on AgentFlow are now feature gates, not credit grants. The previous monthly FLOW-credit grant model is gone with the move ofDocumentation Index
Fetch the complete documentation index at: https://agentflow-fea9d881-feat-republic-narrative.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
$FLOW to an on-chain token. Subscriptions unlock platform-side features for marketplace and live build users.
Earlier docs referenced
monthlyGrantFlow and currentGrantRemainingFlow. These fields are removed. If you have a billing system that depended on them, switch to feature checks (features.priorityQueue, features.premiumAgents, etc.).Tiers
| Tier | Monthly USD | Features |
|---|---|---|
| Plus | $20 | Priority queue, basic analytics |
| Pro | $100 | All Plus + premium agents, advanced analytics, faster SSE |
| Max | $200 | All Pro + private project pages, dedicated runtime slot |
POST /subscriptions/checkout
Initiate a subscription checkout flow. Auth: required.One of
plus, pro, max.One of
cryptobot, platega, usdt_bep20.checkoutUrl is provider-specific. Redirect the user there. Activation happens server-side once the provider’s webhook confirms.
GET /me/subscription
Fetch the current user’s active subscription. Auth: required.status values: active, grace (failed renewal, retrying), canceled, none.
POST /me/subscription/cancel
Cancel at end-of-period. The user keeps the tier untilrenewsAt, then drops to none.
Auto-renew and grace
Subscriptions auto-renew through the same provider used at activation. If the renewal payment fails, the subscription enters a 7-day grace period during which features stay live and payment retries daily. After 7 days of failed retries the subscription is canceled.Errors
| Code | When |
|---|---|
tier_unknown | Bad tier value |
provider_unsupported | Provider not enabled in this deployment |
subscription_active | New checkout while one is already active |
Withdrawals are no longer handled through this endpoint group. With
$FLOW on-chain, “withdrawal” simply means selling tokens via FlowProtocol.sell(...) directly from your wallet to the USDT pair. See Buy / Sell. The old /me/payouts endpoints are deprecated.