Now in Beta

Secure sandbox for AI Agents

Run untrusted code safely in isolated environments. Sub-second cold starts, per-second billing, and SDKs for Python & TypeScript.

Three lines to run code safely

Create a sandbox, execute code, get results. It's that simple.

Python
from agentongo import Sandbox

sb = Sandbox.create(image="python:3.12")
result = sb.exec("python -c 'print(2**100)'")
print(result.stdout)
# 1267650600228229401496703205376

sb.destroy()
TypeScript
import { Sandbox } from '@agentongo/sdk'

const sb = await Sandbox.create({
  image: 'python:3.12'
})
const result = await sb.exec('echo hello')
console.log(result.stdout) // hello

await sb.destroy()

Built for AI agent workloads

Everything your agent needs to execute code safely at scale.

Sub-second Cold Start

Sandboxes boot in under 500ms using snapshot-based restoration. Your agents never wait.

Secure Isolation

gVisor-based kernel isolation. Each sandbox runs in its own security boundary.

Per-second Billing

Pay only for what you use, billed per second. No idle costs, no minimum commitments.

Multi-language SDKs

First-class Python and TypeScript SDKs. REST API for everything else. CLI for debugging.

File System Access

Upload and download files to sandboxes. Persistent volumes for stateful workloads.

Snapshots & Restore

Snapshot a running sandbox and restore it in milliseconds. Perfect for RL rollouts.

Simple, transparent pricing

Pay per second. Scale to zero. No surprises.

Free

¥0

Get started with 100 free sandbox minutes per month

  • 100 minutes / month
  • 2 vCPU per sandbox
  • 4 GB RAM per sandbox
  • Community support
Start Free

Pro

¥0.05 / vCPU·min

Usage-based pricing for production workloads

  • Unlimited sandbox minutes
  • Up to 8 vCPU per sandbox
  • Up to 32 GB RAM per sandbox
  • Snapshots & restore
  • Priority support
Get Started

Enterprise

Custom

Private deployment, SLA, and volume discounts

  • Private cluster deployment
  • Custom SLA
  • Volume discounts
  • GPU sandboxes
  • Dedicated support
Contact Us