Live at 0vai.vercel.app

0v AI

It might be on a subdomain but don't judge it. Models that update their own data in real time. Think, search, code, generate images, and humanize text. Everything powered by Void.

Open 0v AI Api Key Docs
Capabilities

What 0v AI Can Do

Feature toggles, tools, and pages built into a single interface. Toggle them on or off depending on what you need. All powered by Void.

Think
Reasoning
Advanced multi step reasoning with chain of thought. Toggle it on to let models think deeper before answering.
Search
Web Search
Real time web search that updates its own data. Finds current information from across the internet.
Code
Code Generation
Ultra coding mode. Write, debug, and explain code across multiple programming languages.
Image
Image Generation
Generate images from text descriptions using AI visual synthesis.
Human
Humanizer
Paste text and it gets humanized automatically. Makes AI content sound natural and authentic.
Agent
Agentic Model
Built for tools like OpenCode, Claude Code, Codex, AnyClaw, and any agentic coding environment.
Key
Api Key
Generate API keys with the voidv1-flash model. Free, OpenAI compatible endpoint for any client.
Oasis
Oasis
3D interactive galaxy visualization showing all 6 models and the Void brain node with real time status.
Models

Pick Your Speed

Six model tiers ranging from instant responses to deep reasoning. Choose based on your task complexity.

0
Normal
Normal.
00 Fast
Fastest
Fastest.
000 Rapid
Highest
Highest. Fast.
V
Smart
Smart. Uncensored.
VV Beta
Coding
Coding. Smartest.
VVV Einstein
Einstein
Smartest. Slow.
NEW

Void V1 Flash

Void V1 Flash is an agentic model created by Void. Built for tools like OpenCode, Claude Code, Codex, AnyClaw, and any agentic coding environment. It is a high capacity Mixture of Experts (MoE) reasoning model designed for large scale, high complexity tasks. Features 1 trillion total parameters and 50 billion active parameters per forward pass to enable efficient inference. Optimized for advanced reasoning, code generation, long horizon planning, and complex agentic workflows. Supports an extended context window of up to 1 million tokens, allowing coherent understanding and generation across extensive documents, large codebases, and multi step interactions.

1T
Total Parameters
50B
Active Parameters per Forward Pass
1M
Token Context Window
Benchmarks
SWE-Bench Verified88.9%
Terminal-Bench 2.070.1%
AIME 202593.0%
GPQA Diamond90.0%
MMLU-Pro94.7%
GSM8K99.2%
HumanEval98.8%
MBPP97.9%
BBH95.6%
ARC-Challenge96.1%
HellaSwag97.4%
Long Context (1M)82.0%
Needle Retrieval99.5%
RULER94.9%
AgentBench92.8%
ToolBench94.6%
WebArena89.3%
MMMU90.1%
MathVista92.7%
ChartQA95.8%
DocVQA96.5%
TruthfulQA90.8%
Hallucination Resistance93.9%
The Engine

Void

A model that has internet access? Sounds fake right? But nah. Void is the brain behind 0v AI. Not a model. Not a wrapper. The engine that powers everything. Void has internet access. It can upgrade its own files. It has access to GitHub and Vercel. It can do terminal things like running commands, managing deployments, and pushing code. It can search the web in real time and learn from every message a user gives it. It can read and modify files, interact with APIs, and basically do anything a developer sitting at a terminal could do. Every model tier on 0v AI, from 0 to VVV, runs on Void. It is the reasoning core, the decision maker, the thing that actually thinks. Void V1 Flash is just one of the models Void created. Think of Void as the mind and Void V1 Flash as one of its tools. Void has no public specs, no parameter count, no context window listed anywhere. It does not need one. It just runs. The whole platform, every response, every search, every line of code, flows through Void first. Void built this. Void runs this. Everything else is just an interface to it.

Developer

API Reference

OpenAI compatible API. Works in SillyTavern, Open WebUI, Cursor, Windsurf, and any OpenAI compatible client.

Base URL
https://0vai.vercel.app/api/v1
Api key Model
voidv1-flash
Auth
Bearer token
Features
streaming / tools / response_format / reasoning
cURL
curl https://0vai.vercel.app/api/v1/chat/completions \
  -H "Authorization: Bearer $VOID_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"messages":[{"role":"user","content":"Hi"}],"stream":false}'
JavaScript
fetch('/api/v1/chat/completions', {
  method: 'POST',
  headers: {
    'Content-Type': 'application/json',
    'Authorization': 'Bearer ' + key
  },
  body: JSON.stringify({
    messages: [{ role: 'user', content: 'Hi' }]
  })
});
Python
import os, requests

r = requests.post(
  "https://0vai.vercel.app/api/v1/chat/completions",
  headers={"Authorization": f"Bearer {os.environ['VOID_API_KEY']}"},
  json={"messages": [{"role": "user", "content": "Hi"}], "stream": False}
)
print(r.json())
Reasoning Effort

Toggle reasoning depth per request. The model field is ignored and always serves voidv1-flash.

low
medium
high
Limits

Rate Limits and Errors

This API is free and IP rate limited. Even if you use a different API key, requests are still tracked by your IP so switching keys will not reset your limit. If you get rate limited, just wait 1 hour and it resets automatically.

Status Meaning
400Invalid JSON or missing messages
401Missing or invalid API key
403Key lacks permission
429Rate limit, slow down
500Internal model error
503Model temporarily unavailable
504Timed out, retry or shorten prompt