Get GPU VM details

Get detailed information about a specific GPU VM including real-time data from the Massed Compute provider:

  • Current status (Running, Stopped, etc.)
  • IP address
  • Compute specs (CPU, RAM, Disk)
  • JupyterLab URL (if available)

Requires GPU feature to be enabled.

Path Parameters
  • id
    Type: stringFormat: uuid
    required

    The GPU VM ID

Responses
  • application/json
  • application/json
  • 403

    GPU feature not enabled for this entity

  • application/json
  • application/json
Request Example for get/resource/gpu/{id}
curl https://api.gpcn.com/v1/resource/gpu/123e4567-e89b-12d3-a456-426614174000 \
  --header 'X-API-Key: YOUR_SECRET_TOKEN'
{
  "success": true,
  "message": "string",
  "data": {
    "id": "123e4567-e89b-12d3-a456-426614174000",
    "name": "string",
    "createdAt": "2026-05-19T14:02:02.487Z",
    "updatedAt": "2026-05-19T14:02:02.487Z",
    "deletedAt": "2026-05-19T14:02:02.487Z",
    "status": "Provisioning",
    "configuration": {
      "name": "string",
      "code": "string",
      "gpuCount": 1,
      "cpu": 1,
      "ram": 1,
      "disk": 1,
      "skuId": "123e4567-e89b-12d3-a456-426614174000",
      "skuCode": "string"
    },
    "ip": "string",
    "datacenter": {
      "id": "123e4567-e89b-12d3-a456-426614174000",
      "name": "string",
      "region": "string",
      "countryAbbr": "string",
      "country": "string"
    },
    "resourceGroupId": "123e4567-e89b-12d3-a456-426614174000",
    "resourceGroupName": "string",
    "image": "string",
    "jupyterUrl": "string",
    "username": "string",
    "sshKeyId": "123e4567-e89b-12d3-a456-426614174000",
    "sshKeyName": "string",
    "hasStoredCredentials": true
  },
  "meta": null
}