Alle Hostsysteme auflisten

GET /vm/list/hosts

Response (application/json)

{
    "status": "success",
    "requestID": "a8a8e7bd-a3e4-4bd3-8425-9a90052406d0",
    "message": "all available host systems are shown below",
    "data": [
        {
            "name": "nl_xeon",
            "displayname": "Intel Xeon KVM-Server, Skylink Datacenter",
            "datacenter": {
                "name": "skylink",
                "displayname": "SkyLink Data Center BV",
                "country": "Niederlande",
                "city": "Eygelshoven"
            },
            "hardware": {
                "processor": "Intel(R) Xeon(R) CPU E5-2680 v2 @ 2.80GHz",
                "memory": "DDR3 Synchronous Registered (Buffered) 1600 MHz",
                "nvme_hard_drives": "Samsung SSD PM9A1"
            },
            "configuration": {
                "cores": {
                    "min": 1,
                    "max": 12,
                    "step": 1
                },
                "mem": {
                    "min": 1024,
                    "max": 96,
                    "step": 1024
                },
                "disk": {
                    "min": 10,
                    "max": 300,
                    "step": 10
                },
                "ips": {
                    "min": 1,
                    "max": 6,
                    "step": 1
                },
                "backup_slots": {
                    "min": 2,
                    "max": 10,
                    "step": 1
                },
                "network_speed": {
                    "min": 1000,
                    "max": 3000,
                    "step": 1000
                }
            }
        },
        {
            "name": "nl_ryzen",
            "displayname": "AMD Ryzen KVM-Server, Skylink Datacenter",
            "datacenter": {
                "name": "skylink",
                "displayname": "SkyLink Data Center BV",
                "country": "Niederlande",
                "city": "Eygelshoven"
            },
            "hardware": {
                "processor": "AMD Ryzen 7 5800X @ 3.80GHz",
                "memory": "DDR4 Synchronous 3200 MHz",
                "nvme_hard_drives": "Samsung SSD PM9A1"
            },
            "configuration": {
                "cores": {
                    "min": 1,
                    "max": 8,
                    "step": 1
                },
                "mem": {
                    "min": 1024,
                    "max": 32,
                    "step": 1024
                },
                "disk": {
                    "min": 10,
                    "max": 300,
                    "step": 10
                },
                "ips": {
                    "min": 1,
                    "max": 6,
                    "step": 1
                },
                "backup_slots": {
                    "min": 2,
                    "max": 10,
                    "step": 1
                },
                "network_speed": {
                    "min": 1000,
                    "max": 5000,
                    "step": 1000
                }
            }
        }
    ]
}

cURL

curl "https://live.fireapi.de/vm/list/hosts" -X GET -H "Content-Type: application/x-www-form-urlencoded" -H "X-FIRE-APIKEY: REPLACE_API-KEY"

Anfrage testen