--- title: Daytona Documentation description: Start managing your Sandboxes with Daytona. sidebar: label: "Quickstart" --- Daytona is a secure and elastic infrastructure for running AI-generated code. Daytona provides **full composable computers** — [sandboxes](/docs/en/sandboxes) — for AI agents with complete isolation, a dedicated kernel, filesystem, network stack, and allocated vCPU, RAM, and disk. Sandboxes are the core component of the Daytona platform, spinning up in under 90ms from code to execution and running any code in Python, TypeScript, and JavaScript. Built on OCI/Docker compatibility, massive parallelization, and unlimited persistence, sandboxes deliver consistent, predictable environments for agent workflows. Agents and developers interact with sandboxes programmatically using the SDKs, API, and CLI. Operations span sandbox lifecycle management, filesystem operations, process and code execution, runtime configuration, and more. Our stateful environment [snapshots](/docs/en/snapshots) enable persistent agent operations across sessions, making Daytona the ideal foundation for AI agent architectures. ## Get started 1. Create an account → [app.daytona.io](https://app.daytona.io) 2. Get an API key → [app.daytona.io/dashboard/keys](https://app.daytona.io/dashboard/keys) 3. Install the Python SDK ```bash pip install daytona ``` 4. Create a sandbox and run code ```python # Import the Daytona SDK from daytona import Daytona, DaytonaConfig # Define the configuration config = DaytonaConfig(api_key="YOUR_API_KEY") # Replace with your API key # Initialize the Daytona client daytona = Daytona(config) # Create the Sandbox instance sandbox = daytona.create() # Run code response = sandbox.process.code_run('print("Hello World")') print(response.result) ``` 3. Install the TypeScript SDK ```bash npm install @daytona/sdk ``` 4. Create a sandbox and run code ```typescript // Import the Daytona SDK import { Daytona } from '@daytona/sdk' // Initialize the Daytona client const daytona = new Daytona({ apiKey: 'YOUR_API_KEY' }) // Replace with your API key // Create the Sandbox instance const sandbox = await daytona.create() // Run code const response = await sandbox.process.codeRun('print("Hello World")') console.log(response.result) ``` 3. Install the Ruby SDK ```bash gem install daytona ``` 4. Create a sandbox and run code ```ruby require 'daytona' # Initialize the Daytona client config = Daytona::Config.new(api_key: 'YOUR_API_KEY') # Replace with your API key # Create the Daytona client daytona = Daytona::Daytona.new(config) # Create the Sandbox instance sandbox = daytona.create # Run code response = sandbox.process.code_run(code: 'print("Hello World")') puts response.result ``` 3. Install the Go SDK ```bash go get github.com/daytona/clients/sdk-go ``` 4. Create a sandbox and run code ```go package main import ( "context" "fmt" "github.com/daytona/clients/sdk-go/pkg/daytona" "github.com/daytona/clients/sdk-go/pkg/types" ) func main() { config := &types.DaytonaConfig{ APIKey: "YOUR_API_KEY", // Replace with your API key } client, _ := daytona.NewClientWithConfig(config) ctx := context.Background() sandbox, _ := client.Create(ctx, nil) // Run code result, _ := sandbox.Process.CodeRun(ctx, `print("Hello World")`) fmt.Println(result.Result) } ``` 3. Install the Java SDK **Gradle** Add the Daytona SDK dependency to your `build.gradle.kts`: ```kotlin dependencies { implementation("io.daytona:sdk-java:0.1.0") } ``` **Maven** Add the Daytona SDK dependency to your `pom.xml`: ```xml io.daytona sdk-java 0.1.0 ``` 4. Create a sandbox and run code ```java import io.daytona.sdk.Daytona; import io.daytona.sdk.Sandbox; import io.daytona.sdk.DaytonaConfig; import io.daytona.sdk.model.ExecuteResponse; public class Main { public static void main(String[] args) { DaytonaConfig config = new DaytonaConfig.Builder() .apiKey("YOUR_API_KEY") .build(); try (Daytona daytona = new Daytona(config)) { Sandbox sandbox = daytona.create(); // Run code ExecuteResponse response = sandbox.getProcess().codeRun("print(\"Hello World\")"); System.out.println(response.getResult()); } } } ``` 3. Create a sandbox and run code ```bash # Create sandbox curl https://app.daytona.io/api/sandbox \ --request POST \ --header 'Content-Type: application/json' \ --header 'Authorization: Bearer YOUR_API_KEY' \ --data '{}' # Run code curl 'https://proxy.app.daytona.io/toolbox/{sandboxId}/process/code-run' \ --request POST \ --header 'Content-Type: application/json' \ --data '{ "code": "print(\"Hello World\")" }' ``` 3. [Install the CLI](/docs/en/tools/cli) 4. Create a sandbox and run code ```shell daytona create --name hello daytona exec hello -- python3 -c 'print("Hello World")' ``` ## Next steps Daytona provides core platform resources for managing sandboxes, environments, and storage. Start with the following: ## References Daytona provides a comprehensive set of resources for developers and agents to get started and build on the platform. You can find the following resources in the documentation: - **Daytona SDKs**: [TypeScript](/docs/en/typescript-sdk), [Python](/docs/en/python-sdk), [Ruby](/docs/en/ruby-sdk), [Go](/docs/en/go-sdk), [Java](/docs/en/java-sdk) - **Daytona APIs**: [Platform](/docs/en/tools/api/daytona) ([OpenAPI](/docs/openapi.json)), [Toolbox](/docs/en/tools/api/toolbox) ([OpenAPI](/docs/toolbox-openapi.json)), [Analytics](/docs/en/tools/api/analytics) ([OpenAPI](/docs/analytics-openapi.json)) - **Daytona CLI**: [Mac/Linux/Windows](/docs/en/tools/cli) - **Daytona LLMs**: [llms.txt](https://www.daytona.io/docs/llms.txt), [llms-full.txt](https://www.daytona.io/docs/llms-full.txt) - **Daytona Skills**: [agent skills](/docs/en/agent-skills) - **Daytona Markdown**: suffix pages with **`.md`** (e.g [sandboxes.md](/docs/en/sandboxes.md))