Skip to content

skystate billing

Open the billing page in the dashboard.

Synopsis

skystate billing [--no-browser]

Description

Opens the SkyState billing page in your default browser. The billing URL is derived from the configured API URL by replacing the api. subdomain with app. (e.g., https://api.skystate.iohttps://app.skystate.io/billing).

If the browser cannot be opened (e.g., in a headless SSH session), the URL is printed to stderr instead.

Options

OptionDescription
--no-browserPrint the billing URL to stderr instead of opening a browser

Global options (--api-url) are also accepted. See global options.

Examples

sh
# Open billing page in browser
skystate billing

# Print URL instead of opening browser (useful in SSH sessions)
skystate billing --no-browser

# Use with a custom API URL
skystate billing --api-url https://api.myinstance.com

Output

When a browser opens:

Opening billing page in browser...

When browser cannot be opened (or --no-browser is used):

Open this URL:
  https://app.skystate.io/billing

With --no-browser, the URL is printed directly (without the "Open this URL:" prefix):

https://app.skystate.io/billing

Errors

This command does not require authentication. It only reads the configured API URL to derive the dashboard URL.

SituationMessage
Browser open failsFalls back to printing the URL — no error raised

Dashboard equivalent

Navigate directly to https://app.skystate.io/billing to manage your subscription, view invoices, and upgrade your plan.

Built with VitePress