> ## 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.

# Installation

> Install the buntime.sh TypeScript SDK

## Install the SDK

<CodeGroup>
  ```bash bun theme={null}
  bun add buntime.sh
  ```

  ```bash npm theme={null}
  npm install buntime.sh
  ```

  ```bash pnpm theme={null}
  pnpm add buntime.sh
  ```

  ```bash yarn theme={null}
  yarn add buntime.sh
  ```
</CodeGroup>

## Requirements

* Node.js 18+ or Bun 1.0+
* TypeScript 5+ (optional, for types)

## Verify Installation

```typescript theme={null}
import { Buntime } from 'buntime.sh';

const client = new Buntime({
  apiKey: process.env.BUNTIME_API_KEY
});

console.log('buntime.sh SDK installed successfully!');
```

## Next Steps

<CardGroup cols={2}>
  <Card title="Quickstart" icon="rocket" href="/sdk/quickstart">
    Get started with your first execution
  </Card>

  <Card title="SDK Reference" icon="book" href="/sdk/client">
    Explore all SDK methods
  </Card>
</CardGroup>
