Browse the public pricing catalog from the CLI — VM plans, volume / backup / snapshot per-GB rates, floating IP family rates.
Updated May 10, 2026The raff pricing command group browses Raff’s public pricing catalog. Use it to discover plan IDs (for raff vm create --pricing-id), per-GB storage rates (for cost forecasting), and floating IP rates. Output supports --output json for scripting.
raff pricing vm [--region <region>] [--vm-type standard|premium] [--output table|json]
List VM plans. Output columns: ID, TYPE, REGION, vCPU, RAM, SSD, TRANSFER, $/HR, $/MO. The ID is what you pass to raff vm create --pricing-id.
# All standard plansraff pricing vm --vm-type standard# Cheapest plan that meets your minimumsraff pricing vm --output json | jq 'sort_by(.monthly_price) | .[0]'