Skip to main content
Manage billing, spending limits, and plan upgrades.

spend-cap get

Show current spend cap and usage.
floo billing spend-cap get

JSON output

{
  "success": true,
  "data": {
    "spend_cap": 5000,
    "current_period_spend_cents": 1234,
    "spend_cap_exceeded": false
  }
}
Values are in cents. spend_cap is null when no cap is set.

spend-cap set

Set monthly spend cap in dollars. Use 0 for no cap.
floo billing spend-cap set 50

Arguments

ArgumentDescription
AMOUNTMonthly spend cap in dollars. Range: 00 -- 1,000,000. Use 0 for no cap.

Examples

# Set a $50/month cap
floo billing spend-cap set 50

# Remove spend cap
floo billing spend-cap set 0

# Agent workflow: set cap and confirm
floo billing spend-cap set 100 --json 2>/dev/null | jq -r '.data.spend_cap'

JSON output

{
  "success": true,
  "data": {
    "spend_cap": 5000,
    "currency": "usd"
  }
}

upgrade

Open Stripe billing portal to upgrade plan.
floo billing upgrade

Flags

FlagDescription
--plan hobby|pro|teamTarget plan

Plans

PlanPrice
Free$0/mo
Hobby$5/mo
Pro$20/mo
Team$200/mo
EnterpriseCustom pricing

Examples

# Open upgrade portal (interactive plan selection)
floo billing upgrade

# Upgrade to a specific plan
floo billing upgrade --plan pro

JSON output

{
  "success": true,
  "data": {
    "url": "https://billing.stripe.com/session/..."
  }
}

usage

Show current plan, usage, and spend cap with visual progress bar.
floo billing usage
Plan: Pro ($20/mo)
Included compute: $20.00/month
Current spend: $12.34
Spend cap: $50.00/month
Usage: 25% of cap
████████░░░░░░░░░░░░░░░░░░░░░░  25%

JSON output

{
  "success": true,
  "data": {
    "plan": "pro",
    "spend_cap_cents": 5000,
    "max_spend_cap_cents": 100000,
    "current_period_spend_cents": 1234,
    "spend_cap_exceeded": false
  }
}

contact

Print enterprise contact info.
floo billing contact
Enterprise & custom plans: sales@getfloo.com
Subject: Enterprise inquiry

JSON output

{
  "success": true,
  "data": {
    "email": "sales@getfloo.com",
    "subject": "Enterprise inquiry"
  }
}

Errors

CodeMeaning
NOT_AUTHENTICATEDRun floo auth login first
INVALID_AMOUNTSpend cap must be between 0and0 and 1,000,000