Daytona Secure Code Sandbox in a TEE

Powered by Lunal's Trusted Execution Environments

What is this?

This is Daytona, a secure sandbox for executing AI-generated code with sub-90ms environment creation, running inside a Trusted Execution Environment (TEE).

Get Started

Open Dashboard

Login credentials:
Email: admin@daytona-demo.lunal.dev
Password:

Use Daytona from Python

1. Create API Key

Log in to the dashboard and create an API key: Settings → API Keys

2. Install SDK (one-time)

uv pip install daytona-sdk

3. Run Your Code


                from daytona import Daytona, DaytonaConfig

                config = DaytonaConfig(
                    api_url="https://daytona-demo.lunal.dev/api",
                    api_key="YOUR_API_KEY"  # From step 1
                )
                daytona = Daytona(config)

                # Create and use a sandbox
                sandbox = daytona.create()
                result = sandbox.process.code_run('print("Hello from Daytona!")')
                print(result.result)
                daytona.delete(sandbox)
            

What is Lunal?

Lunal is the trusted compute company that makes TEEs simple, usable, and scalable. We provide unified software and infrastructure for deploying AI workloads in TEEs with zero configuration.

Learn more about Lunal and why secure AI needs TEEs.