Voltage Park Virtual Machines API

Deploy and manage on-demand GPU virtual machines and instant VMs.

Operations 11

GET /virtual-machines/instant/locations List available locations for instant VMs #
GET /virtual-machines/instant/locations/{location_id} Location details for instant VMs #
POST /virtual-machines/instant Deploy an instant virtual machine #
GET /virtual-machines/ List of owned, unterminated virtual machines #
GET /virtual-machines/{virtual_machine_id} Details for an unterminated virtual machine #
PATCH /virtual-machines/{virtual_machine_id} Modify a virtual machine's details #
DELETE /virtual-machines/{virtual_machine_id} Terminate a virtual machine #
PUT /virtual-machines/{virtual_machine_id}/power-status Start or stop a virtual machine #
POST /virtual-machines/{virtual_machine_id}/relocate Relocate a stopped-disassociated virtual machine to a new hostnode #
POST /virtual-machines/{virtual_machine_id}/port-forward Request port forwarding for a virtual machine #
DELETE /virtual-machines/{virtual_machine_id}/port-forward Delete port forwarding(s) for a virtual machine #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/voltage-park-virtual-machines-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

voltage-park-virtual-machines-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Voltage Park On-Demand Bare Metal Virtual Machines API
  description: The all-purpose management API for Voltage Park On-Demand, the GPU cloud offering on-demand and reserved NVIDIA H100 / H200 clusters as bare metal and virtual machines. The API lets developers deploy and manage instant VMs, bare-metal GPU rentals, SSH keys, shared storage, locations, billing, and organization settings. Requests authenticate with a bearer API token created on the Developers page of the Voltage Park dashboard; tokens are valid for one year. The On-Demand platform is served on TensorDock infrastructure.
  termsOfService: https://www.voltagepark.com/legal
  contact:
    name: Voltage Park Support
    url: https://support.voltagepark.com
  version: 0.0.1
servers:
- url: https://cloud-api.voltagepark.com/api/v1
security:
- apiTokenAuth: []
tags:
- name: Virtual Machines
  description: Deploy and manage on-demand GPU virtual machines and instant VMs.
paths:
  /virtual-machines/instant/locations:
    get:
      tags:
      - Virtual Machines
      operationId: getInstantVmLocations
      summary: List available locations for instant VMs
      responses:
        '200':
          description: Paginated list of instant-deploy locations.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PaginatedInstantDeployLocation'
  /virtual-machines/instant/locations/{location_id}:
    get:
      tags:
      - Virtual Machines
      operationId: getInstantVmLocationDetails
      summary: Location details for instant VMs
      parameters:
      - $ref: '#/components/parameters/LocationId'
      responses:
        '200':
          description: Instant-deploy location details.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/InstantDeployLocation'
  /virtual-machines/instant:
    post:
      tags:
      - Virtual Machines
      operationId: deployInstantVm
      summary: Deploy an instant virtual machine
      description: Using a preset found at `/virtual-machines/instant/locations`, deploy a preconfigured virtual machine in seconds.
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/InstantVMConfig'
      responses:
        '201':
          description: Instant VM deployed.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/InstantVMResult'
  /virtual-machines/:
    get:
      tags:
      - Virtual Machines
      operationId: listVirtualMachines
      summary: List of owned, unterminated virtual machines
      responses:
        '200':
          description: Paginated list of virtual machines.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PaginatedVirtualMachine'
  /virtual-machines/{virtual_machine_id}:
    get:
      tags:
      - Virtual Machines
      operationId: getVirtualMachine
      summary: Details for an unterminated virtual machine
      parameters:
      - $ref: '#/components/parameters/VirtualMachineId'
      responses:
        '200':
          description: Virtual machine details.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/VirtualMachineDetails'
    patch:
      tags:
      - Virtual Machines
      operationId: modifyVirtualMachine
      summary: Modify a virtual machine's details
      parameters:
      - $ref: '#/components/parameters/VirtualMachineId'
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/PatchVirtualMachine'
      responses:
        '200':
          description: Updated virtual machine details.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/VirtualMachineDetails'
    delete:
      tags:
      - Virtual Machines
      operationId: terminateVirtualMachine
      summary: Terminate a virtual machine
      parameters:
      - $ref: '#/components/parameters/VirtualMachineId'
      responses:
        '204':
          description: Virtual machine terminated.
  /virtual-machines/{virtual_machine_id}/power-status:
    put:
      tags:
      - Virtual Machines
      operationId: setVirtualMachinePowerStatus
      summary: Start or stop a virtual machine
      parameters:
      - $ref: '#/components/parameters/VirtualMachineId'
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/VMPowerSchema'
      responses:
        '200':
          description: Power status change accepted.
  /virtual-machines/{virtual_machine_id}/relocate:
    post:
      tags:
      - Virtual Machines
      operationId: relocateVirtualMachine
      summary: Relocate a stopped-disassociated virtual machine to a new hostnode
      parameters:
      - $ref: '#/components/parameters/VirtualMachineId'
      responses:
        '200':
          description: Relocation accepted.
  /virtual-machines/{virtual_machine_id}/port-forward:
    post:
      tags:
      - Virtual Machines
      operationId: createPortForward
      summary: Request port forwarding for a virtual machine
      parameters:
      - $ref: '#/components/parameters/VirtualMachineId'
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/PortForwardConfig'
      responses:
        '201':
          description: Port forwarding created.
    delete:
      tags:
      - Virtual Machines
      operationId: deletePortForward
      summary: Delete port forwarding(s) for a virtual machine
      parameters:
      - $ref: '#/components/parameters/VirtualMachineId'
      responses:
        '204':
          description: Port forwarding deleted.
components:
  parameters:
    VirtualMachineId:
      name: virtual_machine_id
      in: path
      required: true
      schema:
        type: string
        format: uuid
    LocationId:
      name: location_id
      in: path
      required: true
      schema:
        type: string
        format: uuid
  schemas:
    VirtualMachinePricing:
      type: object
      properties:
        rate_hourly:
          type: string
          example: '2.500000'
    PatchVirtualMachine:
      type: object
      properties:
        name:
          type: string
    InstantVMResult:
      type: object
      properties:
        id:
          type: string
          format: uuid
        name:
          type: string
        status:
          type: string
    Pagination:
      type: object
      properties:
        total:
          type: integer
        page:
          type: integer
        per_page:
          type: integer
    PaginatedInstantDeployLocation:
      type: object
      properties:
        items:
          type: array
          items:
            $ref: '#/components/schemas/InstantDeployLocation'
        pagination:
          $ref: '#/components/schemas/Pagination'
    InstantVMConfig:
      type: object
      required:
      - config_id
      - name
      properties:
        config_id:
          type: string
          format: uuid
        name:
          type: string
          example: My Instant Virtual Machine
        password:
          type:
          - string
          - 'null'
          minLength: 8
        cloudinit_script:
          type:
          - string
          - 'null'
    PaginatedVirtualMachine:
      type: object
      properties:
        items:
          type: array
          items:
            $ref: '#/components/schemas/VirtualMachineDetails'
        pagination:
          $ref: '#/components/schemas/Pagination'
    VMPowerSchema:
      type: object
      required:
      - action
      properties:
        action:
          type: string
          enum:
          - start
          - stop
    VirtualMachineDetails:
      type: object
      properties:
        id:
          type: string
          format: uuid
        hostnode_id:
          type: string
          format: uuid
        type:
          type: string
          enum:
          - ondem
          - spot
          - subscription
        status:
          type: string
          enum:
          - Running
          - StoppedDisassociated
          - Stopped
          - Terminated
          - Outbid
          - Relocating
        name:
          type: string
        operating_system:
          type: string
          enum:
          - Ubuntu 20.04 LTS
          - Ubuntu 22.04 LTS
          - Ubuntu 24.04 LTS
          - TensorML 20 PyTorch
          - TensorML 24 PyTorch
          - Windows 10
        public_ip:
          type:
          - string
          - 'null'
        pricing:
          $ref: '#/components/schemas/VirtualMachinePricing'
    InstantDeployLocation:
      type: object
      properties:
        id:
          type: string
          format: uuid
        name:
          type: string
    PortForwardConfig:
      type: object
      properties:
        internal_port:
          type: integer
        external_port:
          type: integer
  securitySchemes:
    apiTokenAuth:
      type: http
      scheme: bearer
      description: Bearer API token created on the Developers page of the Voltage Park dashboard. Tokens are valid for one year before expiring.