Build, test, document, and collaborate on APIs with plain-text .void files.
No accounts. No required cloud sync. Just local files, reusable blocks, and Git.

Voiden is an offline API client that helps developers, QA and technical writers build, test, collaborate and document APIs in one place. With a programmable interface (/slash commands) and an agent-friendly CLI, Voiden adapts to how engineers already work. Voiden is built with Electron, Typescript and Javascript, and it doesnt require an account to use it.
No telemetry, no VC funding, and no cloud lock-in.
✨ Features:
Voiden supports all major API protocols:
Single Source of truth for all API work in the same file:
.void files. Keep everything in one format and one workflow.Workflows:
Collaboration:
AI Friendly:
Voiden Runner: A headless CLI for running those .void files outside the desktop app, directly in the terminal.
Current version: 2.1.0
Download installers for macOS, Windows, and Linux from voiden.md/download.
Direct downloads are available for Apple Silicon and Intel macOS, Windows .exe, and Linux .deb, .rpm, and .AppImage builds.
Windows note (starting v2.1.1): the Windows installer is now signed via Azure Trusted Signing instead of our previous certificate provider. Because of this change, you may see a "Windows protected your PC" SmartScreen dialog during install — the installer is signed and verified, this is expected while the app builds up download reputation with Microsoft. Click "More info" → "Run anyway" to proceed.
| Platform | Stable | Early access |
|---|---|---|
| macOS | brew install voiden |
brew install voiden@beta |
| Windows | winget and Chocolatey coming soon |
winget and Chocolatey coming soon |
| Linux | apt and snap support |
Beta apt and snap channels |
Homebrew
brew install voiden
# beta
brew install voiden@beta
APT (Ubuntu / Debian)
curl -fsSL https://voiden.md/apt/stable/voiden.gpg | sudo gpg --dearmor -o /etc/apt/keyrings/voiden.gpg
echo "deb [arch=amd64 signed-by=/etc/apt/keyrings/voiden.gpg] https://voiden.md/apt/stable stable main" | sudo tee /etc/apt/sources.list.d/voiden.list
sudo apt update && sudo apt install voiden
# beta
curl -fsSL https://voiden.md/apt/beta/voiden.gpg | sudo gpg --dearmor -o /etc/apt/keyrings/voiden-beta.gpg
echo "deb [arch=amd64 signed-by=/etc/apt/keyrings/voiden-beta.gpg] https://voiden.md/apt/beta beta main" | sudo tee /etc/apt/sources.list.d/voiden-beta.list
sudo apt update && sudo apt install voiden
Snap
sudo snap install voiden
# beta
sudo snap install voiden --channel=beta
Looking for newer builds? Check the early access section on voiden.md/download.
.void file in any folder and add your request, docs, and reusable blocks.Cmd+Enter or Ctrl+Enter, then commit the file to Git.For a guided first run, see the Voiden quick start.
If you already use Postman, you can bring your existing collections with you:
.void files — one per request, with headers, auth, query params, path variables, bodies, and response examples preserved.Full walkthrough: Postman Imports.
Using Swagger or Insomnia?
OpenAPI Imports. Insomnia Imports
.void files into batch runs with aggregated results..void file looks likeVoiden files combine frontmatter, Markdown, and structured void request blocks so the request and the documentation live together.
Document frontmatter:
---
version: 1.4.6
generatedBy: Voiden app
generatedAt: 2026-04-16T10:24:00.000Z
---
Markdown body:
# Hello, World
A simple GET request you can run with Cmd/Ctrl+Enter.
A void request block:
---
type: request
content:
- type: method
content: GET
- type: url
content: https://echo.apyhub.com
---
Voiden generates the document metadata and block IDs for you inside the app.
| Topic | Description |
|---|---|
| Fresh install | Repository setup and local development |
| Architecture overview | Core app, extension system, and request flow |
| Extension guide | Build your own extension |
| Themes | Create custom themes |
| Troubleshooting | Common issues and fixes |
See the documentation index for the full list.
For platform-specific prerequisites and troubleshooting, start with Fresh Install.
git clone https://github.com/VoidenHQ/voiden.git
cd voiden
corepack enable
yarn set version 4.3.1
yarn install
yarn workspace @voiden/core-extensions build
cd apps/electron && yarn start
If you hit Windows build issues, see Build Errors.
voiden/
├── apps/
│ ├── electron/ # Electron main process
│ └── ui/ # React renderer
├── core-extensions/ # Built-in extensions
└── docs/ # Documentation
Voiden is built on Electron. We are building something closer to an IDE for APIs than a lightweight request sender, so we wanted a mature, cross-platform foundation that ships consistently on macOS, Windows, and Linux, gives us deep system access for things like Git and the terminal, and lets us keep a rich, custom editor experience.
We also know Electron gets a bad reputation, often inherited from other API tools. Our take is that footprint matters, but stability, reliability, and cross-platform predictability matter more when users feel them every day. We would rather be transparent about resource usage and keep optimizing it than chase a lighter stack that breaks in subtle ways.
Read some more of our thoughts here: Why Voiden is Built on Electron (and not Tauri)?.
We welcome contributions. Start with:
This project is licensed under the Apache License 2.0.
$ claude mcp add voiden \
-- python -m otcore.mcp_server <graph>