billing

GET /v1/billing/plans — list available billing plans.

get/v1/billing/plans

Response

Available plans

created_atstring date-time required
descriptionstring nullable
display_namestring required
idstring uuid required
included_disk_gib_hoursinteger nullable
included_memory_gib_hoursinteger nullable
included_storage_gibinteger nullable
included_vcpu_hoursinteger nullable

Monthly included allowances bundled into the flat fee (pool of vCPU-hours / memory GiB-hours / writable-disk GiB-hours / durable-storage GiB). Usage beyond the pool is metered overage on priced plans; on an unpriced (free) plan the compute pool is a hard wall.

is_defaultboolean required

The plan new orgs are assigned. Exactly one row is the default.

max_concurrent_ephemeral_runninginteger nullable

Max simultaneously-running ephemeral sandboxes (cheap, self-cleaning).

max_concurrent_persistent_runninginteger nullable

Max simultaneously-running persistent sandboxes (snapshot/restore cost).

max_disk_size_mib_per_sandboxinteger nullable

Maximum writable disk size (MiB) per sandbox.

max_memory_mib_per_sandboxinteger nullable
max_sandboxesinteger nullable
max_total_storage_gibinteger nullable

Per-org durable-storage hard cap (GiB). Used storage is billed at a flat per-GB-month rate (no free allotment).

max_uptime_minutes_per_sandboxinteger nullable
max_vcpus_per_sandboxinteger nullable
monthly_sandbox_minutesinteger nullable

Deprecated wall-clock minutes budget (NULL). The compute wall is now included_vcpu_hours on unpriced plans.

namestring required
self_serveboolean required

May a user self-subscribe to this plan via the API? Fail-closed; the change-plan check keys on this flag, not the plan name.

subscription_price_centsinteger nullable

Flat monthly subscription price (cents); None = unpriced (free). Source of upgrade/downgrade ordering — compare prices, not a fixed tier rank.

trial_duration_daysinteger nullable
updated_atstring date-time required
usage_disk_gib_hour_usdnumber double nullable
usage_memory_gib_hour_usdnumber double nullable
usage_storage_gib_month_usdnumber double nullable
usage_vcpu_hour_usdnumber double nullable

Per-unit overage rates (USD) charged on usage beyond the included pool; None on the free/unpriced plan (no overage path). Drive the live cost estimate subscription + Σ overage; Autumn's invoice stays authoritative.

Changes