import { Latitudesh } from "latitudesh-typescript-sdk";
const latitudesh = new Latitudesh({
bearer: process.env["LATITUDESH_BEARER"] ?? "",
});
async function run() {
await latitudesh.virtualMachines.get({
virtualMachineId: "vm_7vYAZqGBdMQ94",
});
}
run();{
"data": {
"id": "vm_7vYAZqGBdMQ94",
"type": "virtual_machines",
"attributes": {
"name": "my-new-vm",
"status": "Starting",
"created_at": "2026-01-14T15:57:15+00:00",
"operating_system": null,
"site": "london-2193",
"billing": "hourly",
"plan": {
"id": "plan_VE1Wd3VQOXnZJ",
"name": "c3.small.x86-143"
},
"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_GpZboxNev1U2pxpmKwWAc8e01vpp",
"name": "702 Team",
"slug": "702-team",
"description": "702 Team",
"address": "Suite 729 8171 Albina Forges, Eldridgeberg, CA 26345-3293",
"status": "verified",
"currency": {
"id": "cur_AW6Q2D9lqKLpr",
"code": "BRL",
"name": "Brazilian Real",
"currency_id": null
}
},
"project": {
"id": "proj_W6Q2D9ZQOKLpr",
"name": "Aerodynamic Wool Watch",
"slug": "aerodynamic-wool-watch",
"description": "Intelligent Paper Shirt",
"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
}
}
}
}
}Show a Virtual Machine.
import { Latitudesh } from "latitudesh-typescript-sdk";
const latitudesh = new Latitudesh({
bearer: process.env["LATITUDESH_BEARER"] ?? "",
});
async function run() {
await latitudesh.virtualMachines.get({
virtualMachineId: "vm_7vYAZqGBdMQ94",
});
}
run();{
"data": {
"id": "vm_7vYAZqGBdMQ94",
"type": "virtual_machines",
"attributes": {
"name": "my-new-vm",
"status": "Starting",
"created_at": "2026-01-14T15:57:15+00:00",
"operating_system": null,
"site": "london-2193",
"billing": "hourly",
"plan": {
"id": "plan_VE1Wd3VQOXnZJ",
"name": "c3.small.x86-143"
},
"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_GpZboxNev1U2pxpmKwWAc8e01vpp",
"name": "702 Team",
"slug": "702-team",
"description": "702 Team",
"address": "Suite 729 8171 Albina Forges, Eldridgeberg, CA 26345-3293",
"status": "verified",
"currency": {
"id": "cur_AW6Q2D9lqKLpr",
"code": "BRL",
"name": "Brazilian Real",
"currency_id": null
}
},
"project": {
"id": "proj_W6Q2D9ZQOKLpr",
"name": "Aerodynamic Wool Watch",
"slug": "aerodynamic-wool-watch",
"description": "Intelligent Paper Shirt",
"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
}
}
}
}
}Was this page helpful?