Skip to main content

Installation

npm install @boobie-ai/sdk
Full TypeScript type definitions are included. No separate @types package needed.

Type Safety

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