Platform

The Execution platform Bulit for AI Agents

Runloop gives your agents a full development environment -- isolated, stateful, and fast enough to run at production scale. Every primitive is API-first, so you control the lifecycle from first boot to final snapshot.

MicroVM Devboxes
Blueprints
Snapshots
Credential Gateway
MCP Hub
Network Controls
30,000+
concurrent environments
~100ms
command execution
<2s
10GB image boot
<10ms
Credential Gateway latency

Runloop is two products in one platform. This page covers Execution -- the infrastructure where your agents run. The Evaluation & Benchmarking page covers how you measure whether they are improving. No other sandbox provider offers both.

The workflow surface for building, debugging, and shipping agents

Four tools for the full agent development lifecycle -- from first prototype to production deployment.

Repo Connect
Independently audited infrastructure with secure network boundaries, isolated compute, and auditable deployments.
CLI (rl-cli)
Manage Devboxes, Blueprints, and Snapshots from your terminal. List environments, SSH into a Devbox, inspect logs, and debug agent output.
Dashboard
Web interface for monitoring and managing Runloop resources. View Devbox status, inspect logs, track resource usage, and manage team access.
SDKs
First-class Python and TypeScript client libraries. Every primitive is accessible through the SDK. Framework-agnostic: works with any orchestration layer.
API-First

Three lines to launch. Full lifecycle control from there.

Every execution primitive -- Devboxes, Blueprints, Snapshots, Credential Gateway, MCP Hub, Network Policies -- is accessible through the same SDK.

import runloop

# Launch a Devbox with credential protection and tool access control
devbox = runloop.devboxes.create(
    blueprint_id="bp_agent_runtime",
    credentials=[
        {"name": "RL_ANTHROPIC", "secret": "anthropic-api-key"},
        {"name": "RL_GITHUB", "secret": "github-pat-readonly"}
    ],
    mcp_config="github-readonly",
    network_policy="runtime-locked"
)

# Execute a command
result = runloop.devboxes.execute_sync(devbox.id, "python run_agent.py")

# Snapshot for later resume or parallel branching
snapshot = runloop.devboxes.snapshot(devbox.id, name="checkpoint-1")
import Runloop from 'runloop';

const devbox = await runloop.devboxes.create({
  blueprintId: 'bp_agent_runtime',
  credentials: [
    { name: 'RL_ANTHROPIC', secret: 'anthropic-api-key' },
    { name: 'RL_GITHUB', secret: 'github-pat-readonly' }
  ],
  mcpConfig: 'github-readonly',
  networkPolicy: 'runtime-locked'
});

const result = await runloop.devboxes.executeSync(devbox.id, 'node run_agent.js');

const snapshot = await runloop.devboxes.snapshot(devbox.id, { name: 'checkpoint-1' });
# Install the Runloop CLI
curl -fsSL https://runloop.dev/install | sh
# Authenticate
runloop auth login
# Create a sandbox
runloop sandbox create --image python:3.12 --cpu 2
# Execute a command
runloop sandbox exec --id sb_abc123 "python -c 'print(42)'"
# List active environments
runloop sandbox list --status running
# Attach credentials
runloop credentials attach OPENAI_API_KEY --sandbox sb_abc123

Built for production from day one

Enterprise security and compliance across every deployment model.

SOC 2 Type II
Independently audited infrastructure with secure network boundaries, isolated compute, and auditable deployments.
HIPAA & GDPR
Enterprise-grade data protection standards for regulated industries. BAA and DPA available.
Deploy to Your Cloud
Run Runloop inside your AWS, GCP, or Azure account. Same APIs, your compliance boundary.
Enterprise Support
24/7 managed platform with dedicated oncall. Enterprise SLAs with guaranteed response times.

Execution is half the platform. Evaluation & Benchmarking is the other half -- run public benchmarks, build private evaluation suites, integrate regression testing into CI/CD, and generate fine-tuning signals. All on the same infrastructure.

Start building in minutes

Launch your first Devbox with three lines of code. Every execution primitive is API-first, with credential protection and tool access control built in.

Need enterprise deployment? Talk to Sales