Getting Started
Getting Started
Get up and running with VoltageGPU in under 5 minutes.
1
Create an Account
Sign up at voltagegpu.com/register. Get $5 free credit instantly.
2
Get Your API Key
Go to voltagegpu.com/api-keys and click Generate New Key.
Save your key securely -- you will not be able to see it again after creation.
Path A
Deploy a Confidential Pod
~60 seconds
List confidential inventory
curl https://api.voltagegpu.com/api/volt/machines \ -H "X-API-Key: YOUR_KEY"
Returns Intel TDX tiers only — non-confidential hardware is filtered out server-side. Grab a resource_name (e.g. h200-small).
Pick a resource and deploy
curl -X POST https://api.voltagegpu.com/api/volt/pods \
-H "X-API-Key: YOUR_KEY" \
-H "Content-Type: application/json" \
-d '{
"provider": "confidential",
"name": "my-first-pod",
"resource_name": "h200-small",
"image": "pytorch/pytorch:2.5.1-cuda12.4-cudnn9-devel"
}'Pricing is resolved server-side and the 1h upfront charge is debited atomically — no client-side cost_per_hour needed.
Connect via SSH
ssh <workload-uid>@ssh.deployments.targon.com
Release when done
Stop = destroy for confidential pods. Billing ends immediately.
curl -X POST https://api.voltagegpu.com/api/volt/pods/POD_ID/stop \ -H "X-API-Key: YOUR_KEY"
Path B
Make Your First API Call
~30 seconds
Chat completion (OpenAI-compatible)
curl https://api.voltagegpu.com/v1/chat/completions \
-H "Authorization: Bearer YOUR_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "deepseek-ai/DeepSeek-R1-0528-TEE",
"messages": [
{"role": "user", "content": "Hello!"}
]
}'Python
pip install openai
from openai import OpenAI
client = OpenAI(
base_url="https://api.voltagegpu.com/v1",
api_key="YOUR_KEY"
)
response = client.chat.completions.create(
model="deepseek-ai/DeepSeek-R1-0528-TEE",
messages=[{"role": "user", "content": "Hello!"}]
)
print(response.choices[0].message.content)JavaScript
const response = await fetch(
"https://api.voltagegpu.com/v1/chat/completions",
{
method: "POST",
headers: {
"Authorization": "Bearer YOUR_KEY",
"Content-Type": "application/json"
},
body: JSON.stringify({
model: "deepseek-ai/DeepSeek-R1-0528-TEE",
messages: [
{ role: "user", content: "Hello!" }
]
})
}
);
const data = await response.json();
console.log(data.choices[0].message.content);