API Volta API Documentation
API Volta exposes an OpenAI-compatible API. Point an OpenAI SDK at the base URL below, or call it directly over HTTP.
Quick start
- Create an account at /sign-up.
- Create an API key in the console.
- Send a request to
POST /v1/chat/completions.
Base URL: https://app.apivolta.com/v1
Authorization: Bearer API_KEY
cURL
curl https://app.apivolta.com/v1/chat/completions \
-H "Authorization: Bearer $API_KEY" \
-H "Content-Type: application/json" \
-d '{"model":"DeepSeek-V4-Flash","messages":[{"role":"user","content":"Write a release note."}],"stream":false}'Node.js
import OpenAI from 'openai'
const client = new OpenAI({
baseURL: 'https://app.apivolta.com/v1',
apiKey: process.env.API_VOLTA_API_KEY,
})
const response = await client.chat.completions.create({
model: 'DeepSeek-V4-Flash',
messages: [{ role: 'user', content: 'Write a release note.' }],
})Model names are case-sensitive; use the exact alias shown on model pricing.
Keep API keys private, and do not send highly sensitive or regulated data without evaluating the applicable provider and cross-border processing risks.