## projects billing Manage the payment method and spend limits used for paid provider plans under Stripe Projects. We associate the payment methods with your Stripe account. **Command:** `stripe projects billing` ### Subcommands - `billing show` Display the payment method currently on file for Stripe Projects billing. - `billing add` Add or update the payment method used for Stripe Projects billing. We require it before you can provision any paid plan tier. - `billing update` Set or update global or per-provider monthly spend limits. ### Flags for billing update - `--limit ` Set a monthly spend cap in USD. It applies globally unless you also specify `--provider`. - `--provider ` Scope the spend limit to a specific provider. Per-provider limits take precedence over the global limit. ### Examples **View the payment method on file** ```sh stripe projects billing show ``` **Add or update a payment method** ```sh stripe projects billing add ``` **Set a global 50 USD per month spend cap** ```sh stripe projects billing update --limit 50 ``` **Set a 20 USD per month cap for Supabase only** ```sh stripe projects billing update --limit 20 --provider supabase ```