Developer Reference

Everything you need to integrate VoltageGPU into your applications. Comprehensive API documentation, SDKs, and code examples.

Quick Start Example

Python
import voltagegpu

# Initialize the client with your API key
client = voltagegpu.Client(
    api_key="YOUR_API_KEY"
)

# Create a GPU instance
instance = client.instances.create(
    gpu_type="A100",
    region="us-east-1",
    name="my-training-job"
)

# Run your workload
result = instance.run(
    image="pytorch/pytorch:latest",
    command="python train.py"
)

print(f"Job completed: {result.status}")

Ready to get started?

Sign up for an API key and start building with VoltageGPU today.