Documentation

VoltageGPU Documentation

Confidential AI Infrastructure.
Deploy hardware-sealed Intel TDX GPU pods and run confidential LLM inference — all via REST API.

Base URL: https://api.voltagegpu.com

Quick Start

Deploy a Confidential Pod

curl https://api.voltagegpu.com/api/volt/machines      # Browse TDX GPUs
curl -X POST .../api/volt/pods -H "X-API-Key: ..."    # Deploy (TDX-sealed)
ssh root@<pod-ip>                                      # Connect
Full tutorial →

Run Confidential Inference

curl https://api.voltagegpu.com/v1/chat/completions \
  -H "Authorization: Bearer YOUR_KEY" \
  -d '{"model":"deepseek-ai/DeepSeek-R1-0528-TEE","messages":[...]}'
Full tutorial →

Authentication

VoltageGPU uses two API styles depending on the product:

Volt API Confidential Pods, SSH Keys

X-API-Key: YOUR_KEY

Inference API TEE Chat Completions

Authorization: Bearer YOUR_KEY

Get your API key at voltagegpu.com/dashboard/settings

API Overview

APIBaseEndpointsAuth
Volt (Confidential Infrastructure)/api/volt/*Confidential pods, SSH keys, templates, volumesX-API-Key
Inference (OpenAI-compat)/v1/*TEE chat completions + models listBearer
Full API Reference →

Resources