Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.rigbox.dev/llms.txt

Use this file to discover all available pages before exploring further.

Rigbox gives you isolated Linux VMs - each with its own kernel, filesystem, and network - managed entirely through an API. Deploy workspaces, expose apps to the internet, run AI agents with managed credits, and automate everything with setup scripts and service specs.

Quick example

Deploy a workspace in one API call:
curl -X POST https://api.rigbox.dev/api/v1/quick-deploy \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"template_id": "dev", "name": "<WORKSPACE_NAME>"}'
Replace <WORKSPACE_NAME> with a name of your choice and YOUR_API_KEY with the key from Settings → API Keys in the dashboard. This provisions an isolated micro-VM with Python, Node.js, build tools, and SSH access - ready in seconds.
New to Rigbox? Follow the Quickstart for a step-by-step walkthrough with polling, app exposure, and health checks.

When to use Rigbox

Use caseHow Rigbox helps
AI agent sandboxesRun untrusted AI-generated code in isolated VMs with no access to your infrastructure
App hostingExpose any port as a public URL with automatic HTTPS and subdomain routing
AI coding toolsRun Claude Code, Codex, Aider with managed credits - no API keys needed
Development environmentsReproducible dev environments with setup scripts, snapshots, and pre-installed tools
Bot deploymentDeploy Telegram bots, chat interfaces, and AI agents with the OpenClaw template
Build a platformUse the API to build your own hosting service on top of Rigbox infrastructure

Core capabilities

Workspaces

Isolated micro-VMs with configurable CPU, memory, disk, and full SSH access

Apps & Routing

Expose ports as public URLs on rigbox.dev with automatic HTTPS and health checks

AI & Credits

Managed AI proxy with credits for Anthropic, OpenAI, and Google - or bring your own keys

Tools

Architecture Explorer for code visualization, Virtual Browser for remote browsing

Catalog Apps

Install VS Code, Jupyter, Streamlit, and more in one call

Snapshots

Checkpoint full workspace state and restore instantly

Automation

Setup scripts and service specs for reproducible environments

SSH & CLI

SSH access, file transfer, and full CLI management with rig

Get started

Quickstart

Deploy your first workspace and app in 5 steps

Authentication

API keys, JWTs, and session tokens

Guides

In-depth guides for every feature

Base URL

All API requests go to:
https://api.rigbox.dev/api/v1
See the API Reference for the full endpoint catalog, or the Authentication page for how to authenticate.