Voltage Park Billing API

Hourly rates and historical billing transactions.

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-billing-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 email required.

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

OpenAPI Specification

voltage-park-billing-api-openapi.yml Raw ↑
openapi: 3.0.1
info:
  title: Voltage Park On-Demand Bare Metal Billing 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: Billing
  description: Hourly rates and historical billing transactions.
paths:
  /billing/hourly-rate:
    get:
      tags:
      - Billing
      operationId: getHourlyRate
      summary: Current rate for active rentals
      responses:
        '200':
          description: Combined hourly rate for active rentals.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HourlyRateDetails'
  /billing/transactions:
    get:
      tags:
      - Billing
      operationId: listTransactions
      summary: Historical organization billing log
      responses:
        '200':
          description: Paginated historical billing transactions.
  /billing/reports/{year}/{month}/transactions:
    get:
      tags:
      - Billing
      operationId: getMonthlyTransactions
      summary: Monthly billing log
      parameters:
      - name: year
        in: path
        required: true
        schema:
          type: integer
      - name: month
        in: path
        required: true
        schema:
          type: integer
      responses:
        '200':
          description: Monthly billing transactions report.
components:
  schemas:
    HourlyRateDetails:
      type: object
      required:
      - rate_hourly
      properties:
        rate_hourly:
          type: string
          example: '2.500000'
  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.