Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.buntime.sh/llms.txt

Use this file to discover all available pages before exploring further.

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'
  }
});