Developer Reference
Everything you need to integrate VoltageGPU into your applications. Comprehensive API documentation, SDKs, and code examples.
API Reference
Complete REST API documentation with interactive examples and detailed endpoint specifications
REST APICode ExamplesAuthentication
SDK Documentation
Client libraries and SDKs for popular programming languages to integrate VoltageGPU seamlessly
Python SDKNode.js SDKTypeScript
API Overview
Get started with the VoltageGPU API, learn about authentication, and explore key concepts
Quick StartBest PracticesRate Limits
OpenAPI Spec
Download the complete OpenAPI specification for generating client code and testing
OpenAPI 3.0SwaggerPostman
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.