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

# Quickstart

> Make your first API call to the B.O.O.B.I.E.™ engine in under 5 minutes.

## 1. Get Your API Key

Contact the boobie.ai enterprise team to request API access:

* Email: [boobie@boobie.ai](mailto:boobie@boobie.ai)
* Or visit: [https://boobie.ai/enterprise](https://boobie.ai/enterprise)

## 2. Install the SDK

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

## 3. Make Your First Request

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

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

const response = await client.engine.run({
  vertical: 'music',
  workflow: 'release-strategy',
  context: {
    artist: 'Your Artist Name',
    genre: 'R&B',
    releaseDate: '2026-08-01',
  },
});

console.log(response.strategy);
```

## 4. Handle the Response

```json theme={null}
{
  "id": "job_abc123",
  "status": "completed",
  "vertical": "music",
  "workflow": "release-strategy",
  "result": {
    "strategy": "...",
    "recommendations": [],
    "timeline": {}
  },
  "created_at": "2026-06-12T09:00:00Z"
}
```
