Get information on quick deployment of cloud services

Retrieve configuration information and pricing for quick deployment of cloud services. It also returns an ID required for subsequent calls to complete the order. Use this endpoint to understand costs and options for quickly deploying a new cloud service.

Headers

Accept Example
Content-Type Example

Responses

200
success boolean
timestamp string
requestId string
data object
GET https://cloud.hostup.se/api/cloud/quick-deploy
For AI assistants
cURL
curl -X GET "https://cloud.hostup.se/api/cloud/quick-deploy" \
  -H "X-API-Key: YOUR_API_KEY" \
  -H "Content-Type: application/json"
Response
{
  "success": true,
  "timestamp": "string",
  "requestId": "string",
  "data": {
    "enabled": true,
    "requiresBankId": true,
    "pricing": {
      "base": 0,
      "cpu_hour": 0,
      "memory_gb_hour": 0,
      "disk_gb_hour": 0,
      "bandwidth_gb": 0,
      "ip_address": 0
    },
    "defaults": {
      "cores": 0,
      "memory": 0,
      "disk": 0,
      "location": "string"
    },
    "limits": {
      "cores": {
        "min": 0,
        "max": 0
      },
      "memory": {
        "min": 0,
        "max": 0
      },
      "disk": {
        "min": 0,
        "max": 0
      }
    },
    "locations": [
      {
        "id": "string",
        "name": "string",
        "available": true
      }
    ]
  }
}