vercel buy
The vercel buy command allows you to purchase Vercel products for your team directly from the CLI. You can buy credits, addons, subscriptions, and domains.
All subcommands except domain require a team scope. Use --scope to
specify a team if you haven't already.
vercel buy [subcommand]Running vercel buy without a subcommand displays
the help menu.
Purchase Vercel credits for your team. Supported credit types are v0, gateway (AI Gateway), and agent (Vercel Agent).
The amount argument is specified in whole US dollars. The maximum amount per purchase is $1,000.
vercel buy credits [credit-type] [amount]Using the vercel buy credits command to purchase
credits for the current team.
| Argument | Required | Description |
|---|---|---|
credit-type | Yes | Type of credits to purchase: v0, gateway, agent |
amount | Yes | Amount in whole US dollars (max $1,000 per purchase) |
vercel buy credits v0 100vercel buy credits gateway 250vercel buy credits agent 50Purchase a Vercel addon for your team. Your team must be on the Flex plan to purchase addons. Run vercel buy addon --help to see all available addon options.
vercel buy addon [addon-name] [quantity]Using the vercel buy addon command to purchase an
addon for the current team.
| Argument | Required | Description |
|---|---|---|
addon-name | Yes | Name of the addon to purchase: siem |
quantity | Yes | Number of units to purchase |
vercel buy addon siem 1Purchase a Vercel Pro subscription for your team.
vercel buy proUsing the vercel buy pro command to upgrade the
current team to Vercel Pro.
Pro subscription purchase is not yet available via the CLI.
Purchase a v0 subscription for your team.
vercel buy v0Using the vercel buy v0 command to purchase a v0
subscription for the current team.
v0 subscription purchase is not yet available via the CLI.
Purchase a domain name. This delegates to the vercel domains buy command.
vercel buy domain [domain]Using the vercel buy domain command to purchase a
domain.
| Argument | Required | Description |
|---|---|---|
domain | Yes | The root domain to purchase |
vercel buy domain example.comexample.com.These are options that apply to the vercel buy credits and vercel buy addon subcommands.
The --yes option skips the confirmation prompt. This is required when running in non-interactive environments like CI.
vercel buy credits v0 100 --yesUsing the vercel buy credits command with the
--yes option to skip confirmation.
The --json flag returns the purchase result as JSON instead of plain text.
vercel buy credits gateway 250 --jsonUsing the vercel buy credits command with the
--json option for structured output.
The following global options can be passed when using the vercel buy command:
For more information on global options and their usage, refer to the options section.
Was this helpful?