VoltageGPU provides a simple and powerful API to access state-of-the-art AI models for various tasks including text generation, image creation, embeddings, and more.
Our API is compatible with OpenAI's format, making it easy to integrate into existing applications while providing access to cutting-edge models at competitive prices.
# Quick start example
curl -X POST https://voltagegpu.com/api/voltage/v1/chat/completions \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "deepseek-ai/DeepSeek-R1",
"messages": [{"role": "user", "content": "Hello!"}]
}'