Skip to content

Getting Started with WAYSCloud

WAYSCloud is a European developer platform with 20+ services — compute, databases, storage, AI, security, communication, and IoT. Everything is accessible through a single dashboard, API, and CLI.

This guide gets you from zero to your first running resource in under 5 minutes.


1. Create your account

Sign up at the dashboard:

my.wayscloud.services

Once logged in, you have immediate access to all services from one control plane. Several services include free tiers — no payment required to start exploring.

Skybert AI Assistant

Press Cmd+S (Mac) or Ctrl+S (Windows/Linux) anywhere in the dashboard to open Skybert, the built-in AI assistant. Ask it anything about the platform, pricing, or how to get started.


2. Get your API key

You can use WAYSCloud entirely through the dashboard, the API, or the CLI. For programmatic access, create an API key.

From the dashboard

  1. Navigate to the service you want to use (e.g. DNS, Storage, LLM)
  2. Click Activate or API Keys
  3. Copy the key — it is shown only once

From the CLI

bash
pip install wayscloud-cli
cloud login
cloud vps list

Key types

TypePurposeFormat
Service API KeyAccess a specific servicewayscloud_{service}_{prefix}_{secret}
Personal Access TokenAccount management, CLI, cross-servicewayscloud_pat_{prefix}_{secret}
S3 Access KeyObject storage (AWS SigV4)Standard AWS format

See API Keys for details on permissions, rotation, IP allowlists, and security best practices.


3. Deploy your first resource

Pick your path — dashboard, API, or CLI. Here are three common starting points:

Deploy a VPS

A virtual machine with full root access, ready in 1–3 minutes.

bash
curl -X POST https://api.wayscloud.services/v1/vps \
  -H "X-API-Key: $WAYSCLOUD_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"plan_code": "vcpu-2gb", "region": "eu-north-1", "os_template": "ubuntu-24.04"}'
bash
cloud vps create --plan vcpu-2gb --region eu-north-1 --template ubuntu-24.04
hcl
resource "wayscloud_vps" "web" {
  name     = "web-server"
  plan     = "vcpu-2gb"
  region   = "eu-north-1"
  template = "ubuntu-24.04"
}

Full VPS guide →

Look up an IP

IP Intelligence works immediately with any API key — free tier auto-provisioned.

bash
curl -H "X-API-Key: $WAYSCLOUD_API_KEY" \
  https://api.wayscloud.services/v1/ip/8.8.8.8

Full IP Intelligence guide →

Create a DNS zone

bash
curl -X POST https://api.wayscloud.services/v1/dns/zones \
  -H "X-API-Key: $WAYSCLOUD_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"zone_name": "example.com"}'

Full DNS guide →


4. What to build next

Compute & hosting

ServiceWhat it doesGet started
Virtual Private ServersLinux and Windows VMs with root accessDeploy a VPS →
App PlatformContainer hosting with Git push deploy
Shared HostingcPanel web hosting for websites and email

Data & storage

ServiceWhat it doesGet started
DatabasesManaged PostgreSQL and MariaDBCreate a database →
Object StorageS3-compatible, unlimited, pay-as-you-goStore files →
RedisManaged Redis for caching and queues
WAYSCloud DriveFile sync with desktop/mobile clients

AI & machine learning

ServiceWhat it doesGet started
LLM APIOpenAI-compatible — Claude, GPT, QwenRun a request →
GPU StudioImage and video generation
Speech IntelligenceAudio transcription (90+ languages)Transcribe audio →
Chatbot (CaaS)AI chatbot with your own knowledge baseCreate a chatbot →

Security

ServiceWhat it doesGet started
WAYSCloud ShieldUnified security — IP, DNS, threats, email
IP IntelligenceIP threat scoring and geolocation (free tier)Protect login →

Communication

ServiceWhat it doesGet started
SMSSend and receive SMS globallySend SMS →
Verify (OTP/2FA)Multi-channel verificationSend OTP →
Live EventsManaged live streaming (RTMP ingest)Launch event →

Networking & IoT

ServiceWhat it doesGet started
DNS ManagementAuthoritative DNS with DNSSECCreate zone →
IoT PlatformDevice management and MQTT telemetry
GlobalSIMIoT SIM cards in 180+ countries

5. Connect with your tools

WAYSCloud works with the tools you already use — no proprietary SDKs required.

ToolUse caseLink
cURL / HTTPAny language, any platformExamples →
Pythonhttpx, requests, boto3, OpenAI SDKExamples →
WAYSCloud CLITerminal managementDocs →
TerraformInfrastructure as codeProvider →
OpenAI SDKLLM API (drop-in compatible)LLM docs →
AWS S3 SDKObject storage (protocol compatible)Storage docs →

See all integrations →


Platform model

WAYSCloud is built around three principles:

  • One platform — 20+ services in one place, one account, one bill
  • One API — consistent REST patterns, unified auth, all at api.wayscloud.services
  • One dashboard — manage everything from a single control plane at my.wayscloud.services

Start in the dashboard, automate with the API, scale with Terraform. All services work together — your VPS accesses your database, your app sends SMS, your IoT devices store telemetry in S3.


Next steps


Need help?

WAYSCloud AS