🚀 We’re in Beta – Virtual Servers via API at Low Prices

We are excited to announce that our Virtual Server API is now available in beta!

During this phase, you can deploy and manage virtual servers entirely through our API — fast, simple, and cost-effective.

Why join the beta?
How it works:
  1. Create your account
  2. Pay a small one-time setup fee (10€)
  3. Create your API key and start launching servers in minutes

Be an early adopter, shape the future of our platform, and lock in beta-phase savings before public launch.

Join the Beta Now

Create a Virtual Server

To create a new virtual server in a specific datacenter, you must provide three parameters in the request body.

Field Type Description Example Value
datacenter Integer ID of the datacenter. Get it from GET /v1/datacenters. 1
article Integer Pricing/article ID for the server type. Get it from GET /v1/prices/server_virtual. 81
os Integer Operating system ID. Get it from GET /v1/server/virtual/operating_systems. 2

Step 1: Get Available Datacenters

curl -X GET https://https://api.ip6.cloud/v1/datacenters \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Accept: application/json"

Step 2: Get Server Prices (Articles)

curl -X GET https://api.example.com/v1/prices/server_virtual \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Accept: application/json"

Step 3: Get Operating Systems

curl -X GET https://api.example.com/v1/server/virtual/operating_systems \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Accept: application/json"

Step 4: Create the Virtual Server

curl -X POST https://api.example.com/v1/server/virtual \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"datacenter": 1,
"article": 81,
"os": 2
}'
Success Response:
{
  "message": "This task is being processed in the background.",
  "status": "accepted",
  "task_id": "51"
}

Your server creation request has been accepted and is processing asynchronously. Use the task_id to track progress.

Error Example:
{
  "error": {
    "code": "unprocessable_entity",
    "message": "unavailable in this datacenter",
    "details": []
  }
}

If you see this, choose a different datacenter, article, or OS combination that is valid.

Create a Dedicated Server Soon!