Skip to main content
GET
/
virtual_machines
/
{virtual_machine_id}
Python (SDK)
from latitudesh_python_sdk import Latitudesh
import os


with Latitudesh(
    bearer=os.getenv("LATITUDESH_BEARER", ""),
) as latitudesh:

    latitudesh.virtual_machines.get(virtual_machine_id="vm_w5AEmq7XDBkWX")

    # Use the SDK ...
{
  "data": {
    "id": "vm_w5AEmq7XDBkWX",
    "type": "virtual_machines",
    "attributes": {
      "name": "my-new-vm",
      "status": "Starting",
      "created_at": "2025-07-16T18:37:14+00:00",
      "operating_system": null,
      "billing": "hourly",
      "plan": {
        "id": "plan_3YjJOLQNdvZ87",
        "name": "c2.tiny.x86-124"
      },
      "specs": {
        "vcpu": 16,
        "ram": "128 GB",
        "storage": "100 GB",
        "nic": "1 x 1 Gbps",
        "gpu": "1 x NVIDIA H100 Tensor Core GPU"
      },
      "team": {
        "id": "team_emQwWL2LQEf37gz25nZZs727bYp",
        "name": "632 Team",
        "slug": "632-team",
        "description": "632 Team",
        "address": "Apt. 782 621 Dietrich Run, Creminfort, VT 22562",
        "status": "verified",
        "currency": {
          "id": "cur_AW6Q2D9lqKLpr",
          "code": "BRL",
          "name": "Brazilian Real",
          "currency_id": null
        }
      },
      "project": {
        "id": "proj_0L6WO1aMOPlXy",
        "name": "Intelligent Wool Pants",
        "slug": "intelligent-wool-pants",
        "description": "Heavy Duty Rubber Gloves",
        "billing_type": "Normal",
        "billing_method": "Normal",
        "bandwidth_alert": false,
        "environment": null,
        "billing": {
          "subscription_id": null,
          "type": "Normal",
          "method": "Normal"
        },
        "stats": {
          "databases": 0,
          "ip_addresses": 0,
          "prefixes": 0,
          "servers": 0,
          "storages": 0,
          "virtual_machines": 1,
          "vlans": 0
        }
      }
    }
  }
}

Authorizations

Authorization
string
header
required

Path Parameters

virtual_machine_id
string
required

Response

200 - application/vnd.api+json

Success

The response is of type file.

I