Skip to main content

Overview

Pass environment variables securely to your code executions for API keys, configuration, and secrets.
Full documentation coming soon. See Execute API for env variable usage.

Quick Example

await client.execute({
  sessionId: session.id,
  code: 'console.log("API Key:", process.env.API_KEY);',
  env: {
    API_KEY: 'secret_key_123',
    NODE_ENV: 'production'
  }
});