Minecraft

Velocity

Despliega un proxy Velocity de Minecraft por API

1 GB

RAM

100%

CPU

5 GB

Disco

Qué es Velocity

Velocity es el proxy de Minecraft moderno con un soporte y escalabilidad inigualables — la puerta de entrada para una red multi-servidor. Combínalo con backends Paper.

Los valores de arriba son un punto de partida recomendado — ajusta RAM, CPU y disco por llamada API y escala cuando quieras.

Despliega Velocity con el SDK

deploy.ts
import { CloudClient } from "@enzonic/cloud-api";

const cloud = new CloudClient({ apiKey: process.env.CLOUD_API_KEY! });

// Resolve the Velocity egg by name (ids vary per panel)
const eggs = await cloud.eggs();
const egg = eggs.find((e) => e.name.includes("Velocity"))!;

const server = await cloud.servers.create({
  name: "minecraft-velocity-1",
  eggId: egg.id,
  region: "USA",
  ramMb: 1024,
  cpuPercent: 100,
  diskMb: 5120,
});

await cloud.servers.power(server.id, "start");

O con REST (curl)

deploy.sh
# 1. Find the Velocity egg id
curl -s https://cloud.api.enzonic.com/v1/eggs \
  -H "Authorization: Bearer $CLOUD_API_KEY"

# 2. Create the server (replace EGG_ID with the id from step 1)
curl -X POST https://cloud.api.enzonic.com/v1/servers \
  -H "Authorization: Bearer $CLOUD_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "name": "minecraft-velocity-1",
    "eggId": EGG_ID,
    "region": "USA",
    "ramMb": 1024,
    "cpuPercent": 100,
    "diskMb": 5120
  }'

Gestiónalo por completo

Una sola clave gestiona el encendido, la consola, los comandos y los archivos.

// Power, console & files — all from the one key
await cloud.servers.power(server.id, "restart");
await cloud.servers.command(server.id, "say Hello from the API");
const usage = await cloud.servers.resources(server.id);

Relacionados

Despliega Velocity en segundos

Crea una cuenta, obtén una clave API y despliega por código.

Empezar gratis
Velocity por API — Enzonic Cloud API | Enzonic Cloud API