The communication between our SDK and API+sandboxes is documented in our infra repo:

Example of using curl to execute code in a sandbox

[#!/bin/bash

E2B_API_KEY=${E2B_API_KEY}

create_sandbox() {
  local template="code-interpreter-beta"
  local timeout=10 # Timeout in seconds

  response=$(curl -s -X POST "<https://api.e2b.dev/sandboxes>" \\
    -H "X-API-Key: $E2B_API_KEY" \\
    -H "Content-Type: application/json" \\
    -d '{
      "templateID": "'"$template"'",
      "timeout": '"$timeout"'
    }')

  sandbox_id=$(echo $response | jq -r '.sandboxID')-$(echo $response | jq -r '.clientID')
  if [ "$sandbox_id" = "-" ]; then
    echo "Sandbox creation failed"
    echo $response
    exit 1
  fi

  echo $sandbox_id
}

execute_code() {
  local sandbox_id=$1
  local code=$2

  response=$(curl -s -X POST "https://49999-$sandbox_id.e2b.dev/execute" \\
    -N \\
    -H "Authorization: Bearer $E2B_API_KEY" \\
    -H "Content-Type: application/json" \\
    -d '{"code": "'"$code"'"}')

  while read -r line; do
    echo "$line" | jq -r 'select(.type == "stdout" or .type == "stderr" or .type == "result" or .type == "error")'
  done < <(echo "$response")
}

# Function to kill the sandbox
kill_sandbox() {
  local sandbox_id=$1

  curl -s -X DELETE "<https://api.e2b.dev/sandboxes/$sandbox_id>" -H "X-API-Key: $E2B_API_KEY"
}

printf "Creating sandbox...\\n"
sandbox_id=$(create_sandbox)

# Code to execute. It needs to be Json escaped
code='print(\\"Hello, World!\\")'
printf "Executing code...\\n"
execute_code $sandbox_id "$code"

printf "Killing sandbox...\\n"
kill_sandbox $sandbox_id](<https://e2bdev.notion.site/public-How-to-migrate-to-the-Foxtrot-cluster-199b8c296873809685d7fe6566747698>)