Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Make your first API call to the B.O.O.B.I.E.™ engine in under 5 minutes.
npm install @boobie-ai/sdk
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);
{ "id": "job_abc123", "status": "completed", "vertical": "music", "workflow": "release-strategy", "result": { "strategy": "...", "recommendations": [], "timeline": {} }, "created_at": "2026-06-12T09:00:00Z" }