Skip to content

OvrinSecure computers for AI agents

Isolated Linux sandboxes in milliseconds — for untrusted code, coding agents, browsers, and autonomous software. One API key, one SDK, one bill.

What is Ovrin?

Ovrin is the agent compute cloud: a self-service platform for provisioning isolated, disposable Linux environments that AI agents and untrusted code can safely run in.

python
import ovrin

client = ovrin.Client()          # reads OVRIN_API_KEY

sandbox = client.sandboxes.create(template="claude-code",
                                  env={"ANTHROPIC_API_KEY": key})
result = sandbox.run('claude "refactor the auth module"')
print(result.stdout)
sandbox.kill()

Signup to first sandbox is minutes, and it stays self-service — create an account, mint an API key, and call the API from Python, TypeScript, or plain HTTP.

Typical Scenarios

Explore all examples in Examples — they run against any Ovrin sandbox template.

Install

bash
pip install ovrin
bash
npm install ovrin
bash
# No install needed — the API is plain REST.
curl https://api.ovrin.app/sandboxes \
  -H "Authorization: Bearer $OVRIN_API_KEY"