Products Pricing Docs Blog
Log in Get started free

Welcome to Arveon Cloud

Arveon Cloud is a developer-first cloud platform offering object storage, compute, managed databases, CDN and more — all accessible from a single API and CLI.

What can you build?

Arveon Cloud is designed for teams that need reliable, globally distributed infrastructure without the complexity or billing surprises of hyperscalers.

  • Store and serve billions of files with Object Storage
  • Run workloads on bare metal or VMs with Compute
  • Deploy containers at scale with Managed Kubernetes
  • Cache assets globally with CDN (220+ PoPs)
  • Persist data reliably with Managed Databases

Core concepts

Regions

All Arveon services are available in 14 regions worldwide. Each region is isolated and redundant. You specify a region when creating any resource.

â„šī¸ Traffic between Arveon services within the same region is always free. This includes storage-to-compute and database-to-compute transfers.

Projects

Resources are organized into projects. Each project has its own team members, billing settings and API keys. You can have up to 10 projects on the Starter plan.

API Keys

All API interactions authenticate using short-lived tokens or long-lived API keys scoped to a project. You can manage keys from Settings → API Keys.

bash
# Export your API key as an environment variable
export ARVEON_API_KEY="ak_live_..."

# Or pass it per-request
curl -H "Authorization: Bearer $ARVEON_API_KEY" \
     https://api.arveon.space/v1/storage/buckets

Next steps

Quick Start

Get from zero to a running VM and a storage bucket in under 5 minutes.

1 — Install the CLI

bash
curl -fsSL https://get.arveon.space | sh

2 — Log in

bash
arveon auth login

This opens a browser window for authentication. After login, your credentials are stored at ~/.config/arveon/config.json.

3 — Create a bucket

bash
arveon storage create --name my-assets --region eu-central-1
# ✓ Bucket created: s3://my-assets.eu-central-1.arveon.space

4 — Deploy a VM

bash
arveon compute deploy \
  --type   cx22 \
  --image  ubuntu-24.04 \
  --region eu-central-1
# ✓ Instance ac-8f3d2a1 is running — 167.235.12.88
✨ The VM and bucket are in the same region, so transfers between them are free and fast.

Install the CLI

The arveon CLI is available for macOS, Linux and Windows.

macOS / Linux

bash
curl -fsSL https://get.arveon.space | sh

Homebrew

bash
brew install arveon/tap/arveon

Windows (Scoop)

powershell
scoop bucket add arveon https://github.com/arveon/scoop-bucket
scoop install arveon

Verify installation

bash
arveon version
# arveon CLI 2.4.1 (2025-10-14)

Object Storage

S3-compatible, globally durable object storage with no egress fees to Arveon Compute.

Key features

  • S3-compatible API — drop-in replacement for existing tooling
  • 11 nines (99.999999999%) of object durability
  • Zero egress fees between Arveon services
  • Server-side encryption (SSE-S3 and SSE-KMS)
  • Lifecycle rules, versioning and multipart uploads
â„šī¸Arveon Object Storage is compatible with the AWS S3 API. Any SDK or tool that supports S3 will work without modification.

Creating a bucket

bash
arveon storage create --name my-bucket --region us-east-1

S3 endpoint

Each bucket is available at: https://<bucket>.<region>.arveon.space

Documentation

Select a topic from the sidebar to get started.

💡Use the search box to quickly find what you're looking for.