> ## Documentation Index
> Fetch the complete documentation index at: https://docs.boobie.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# TypeScript SDK

> Full TypeScript support included with the JavaScript SDK.

## Installation

```bash theme={null}
npm install @boobie-ai/sdk
```

Full TypeScript type definitions are included. No separate @types package needed.

## Type Safety

```typescript theme={null}
import Boobie, { EngineRunParams } from '@boobie-ai/sdk';

const client = new Boobie({
  apiKey: process.env.BOOBIE_API_KEY as string,
});

const params: EngineRunParams = {
  vertical: 'music',
  workflow: 'release-strategy',
  context: { artist: 'Artist Name', genre: 'R&B' },
};

const result = await client.engine.run(params);
```
