Overview

To keep track of all of your instant deploy servers, you can use our list feature.

Keep in mind that this is only for servers that have instant deployment enabled (see our plans page)

Request

Our REST API endpoint for getting your list of servers is available here:

GET <https://api.fluidstack.io/v1/servers>

You need to include the following:

Response

Example

Example request:

curl --request GET '<https://api.fluidstack.io/v1/servers>' -u '<your_api_key>:<your_api_token>'

Example response:

[{
        "os": "Ubuntu 20.04 LTS",
        "region": "USA",
        "term": "hourly",
        "request_monthly": "no",
        "admin_pass": null,
        "ssh_keys": null,
        "id": "rec.....",
        "config": {
            "gpu_model": "A100_PCIE_80GB",
            "gpu_count": 4,
            "cpu_model": "128",
            "cpu_count": 128,
            "ram": 480,
            "nvme_storage": 1700
        },
        "type": "Preconfigured",
        "progress": "",
        "volume": "",
        "capabilities": {
            "extra_disk_support": true,
            "max_disk_size": 2000,
            "gpu_capabilities": {
                "interconnect_type": "Ethernet"
            },
            "interconnect_speed": 1000,
            "internet_speed": 1000,
            "stoppable": true,
            "clonable": false,
            "rebootable": true,
            "provisioning_time": 18,
            "machine_type": "virtual",
            "virtualization": "kubevirt",
            "max_ssh_keys": 1,
            "default_user_name": "ubuntu"
        },
        "current_rate": 0.0,
        "subscription_end_date": "",
        "status": "running",
        "hostname": "user.fluidstack.io",
        "plan_id": "rec.......",
        "ip_address": "x.x.x.x",
        "ssh_port": null,
        "port_forwarding": null,
        "running_rate": "2.45",
        "stopped_rate": "0.1203000"
    }]

Next

Previous