Live burn rate, session cost so far, and org runway for a VM
Every VM bills at one bundled hourly rate (per-GPU catalog price times GPU count for GPU VMs, a flat size rate for CPU VMs); disk is included, never billed separately. The rate is locked when the usage session opens, so this endpoint reads it from the open usage record when one exists (rateSource=locked) and only falls back to the current catalog when nothing is accruing (rateSource=catalog).
Command line
The orl CLI wraps this endpoint:
orl vms burn get <id>Authorization
apiKey OpenRelay API key. Send it as Authorization: Bearer or_… (legacy vl_… keys still work).
In: header
Path Parameters
Response Body
application/json
application/json
application/json
application/json
curl -X GET "https://example.com/v1/vms/string/burn"{ "vmId": "4f6b9a1e-9f1c-4c58-a6a3-1f2f0f6f7a10", "pricePerHourCents": 411, "rateSource": "locked", "rateBasis": "gpu", "gpuCount": 3, "perGpuCents": 137, "diskBilled": false, "accruedSessionCents": 1028, "sessionStartedAt": "2026-07-18T09:12:00Z", "orgAccruedCents": 2120, "orgAccruedMonthCents": 2120, "orgAvailableCents": 10430, "orgBurnPerHourCents": 414, "projectedRunwayHours": 25.07, "autoStopFloorCents": 50}Get a VM with its GPU/node/template info and price GET
Previous Page
GPU utilization, memory, power and temperature time series for a pod GET
Host-side NVIDIA telemetry for a pod's GPUs, sampled on the node that runs it and returned as one continuous time grid. Every series and every GPU in a response shares that grid: the value at index i of any values array was measured at start plus i times stepSeconds, and a null means the node reported no sample at that point. The window ends now and covers only the periods this pod actually held the GPUs it is reported against, so a card that ran another customer's pod earlier never contributes a sample here. A GPU attached to a VM is passed through to the guest, so the host cannot read it. That case answers 200 with an accelerator status of unavailable and an empty gpus list rather than an error, and so do a pod that has not started yet, a pod that was not running in the selected range, and a metrics store that cannot be reached: the accelerator object is the answer, and the client renders its detail sentence. A host that stopped reporting while the pod is still running answers degraded with the history up to the last sample still attached. This operation is exposed as an agent tool by default, in the same class as a pod's burn rate: "how busy were my GPUs" is a read-only question about a resource the caller already owns.