Skip to main content

What is VoidAI?

VoidAI provides a single API endpoint to access AI models from multiple providers. Use one API key to access GPT-5.1, Claude, Gemini, Mistral, and many more models through a unified, OpenAI-compatible interface.

Key Features

15+ Providers

Access models from OpenAI, Anthropic, Google, Mistral, DeepSeek, and more through a single API.

OpenAI Compatible

Drop-in replacement for OpenAI SDK. Switch your base URL and you’re ready to go.

Credit-Based Pricing

Pay only for what you use with our transparent credit system.

Supported Capabilities

CapabilityDescription
Chat CompletionsText generation with streaming support, function calling, and tool use
Image GenerationCreate and edit images with various AI models
AudioText-to-speech, transcription, and translation
VideoGenerate videos from text prompts
EmbeddingsCreate vector embeddings for semantic search
ModerationsContent moderation and safety filtering

Quick Example

from openai import OpenAI

client = OpenAI(
    api_key="sk-voidai-your_key_here",
    base_url="https://api.voidai.app/v1"
)

response = client.chat.completions.create(
    model="gpt-5.1",
    messages=[
        {"role": "user", "content": "Hello!"}
    ]
)

print(response.choices[0].message.content)