Skip to content

Pricing Information

Display pricing for services available on Aleph Cloud, including compute instances, programs, storage, and GPU resources.

Usage

bash
aleph pricing [OPTIONS] SERVICE

Arguments

ArgumentTypeDescription
SERVICE[storage, website, program, instance, confidential, gpu, all]Service to display pricing for

Options

OptionTypeDescription
--tierINTEGERFilter pricing by a specific tier number
--payment-type[hold, superfluid, credit]Filter pricing by payment type
--json / --no-jsonOutput as JSON instead of Rich Table [default: no-json]
--no-nullExclude null values in JSON output
--with-current-availability / --ignore-availability(GPU only) Show prices only for GPU types currently accessible on the network [default: ignore-availability]
--debug / --no-debugEnable debug logging [default: no-debug]
--helpShow this message and exit

Examples

bash
# Display pricing for storage services
aleph pricing storage

# Display pricing for website services
aleph pricing website

# Display pricing for program services
aleph pricing program

# Display pricing for instance services
aleph pricing instance

# Display pricing for a specific tier
aleph pricing instance --tier 2

# Display pricing filtered by payment type (holding tokens)
aleph pricing instance --payment-type hold

# Display pricing for confidential instances
aleph pricing confidential

# Display pricing for GPU services with debugging enabled
aleph pricing gpu --debug

# Display GPU pricing showing only currently available GPUs on the network
aleph pricing gpu --with-current-availability

# Display pricing for all services available
aleph pricing all

# Output pricing as JSON
aleph pricing instance --json

# Output pricing as JSON without null values
aleph pricing instance --json --no-null

Service Types

ServiceDescription
storagePricing for persistent file storage on IPFS via Aleph Cloud
websitePricing for hosting static websites
programPricing for serverless functions (both ephemeral and persistent)
instancePricing for standard virtual machine instances
confidentialPricing for confidential computing instances with encrypted memory
gpuPricing for GPU-enabled instances
allDisplay pricing for all service types

Payment Types

Payment TypeDescription
holdPay by holding ALEPH tokens (staking)
superfluidPay-As-You-Go via token streaming
creditPay using Aleph Cloud credits (prepaid balance)

Understanding Tiers

Each service type has multiple tiers that define the resource allocation:

  • Tier 1: Basic resources (1 compute unit)
  • Tier 2-6+: Progressively more resources (more vCPUs, RAM, disk)

Use aleph pricing <service> to see the specific resources allocated for each tier.

Going Beyond Tiers: While tiers provide predefined resource configurations, you can customize and exceed tier limits by directly specifying --vcpus, --memory, or --rootfs-size when creating instances. See the Resource Allocation section in the Instance documentation for more details on custom resource configuration.