Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.babou.ai/llms.txt

Use this file to discover all available pages before exploring further.

Overview

Creates a new project. A project is the container for chapters, prompts, and exports.

Parameters

name
string
required
Project name (1-30 characters)
description
string
Optional project description (max 1000 characters)

Returns

Returns the created project with its unique ID.

Example Usage

In Claude

Create a new project called "Pricing Page Refresh" for the launch campaign around our new tier
Claude will use the CreateProject tool and respond with the project details.

Direct Tool Call

{
  "name": "CreateProject",
  "arguments": {
    "name": "Pricing Page Refresh",
    "description": "Launch campaign for the new Team tier"
  }
}

Response

{
  "id": "prj_abc123xyz",
  "name": "Pricing Page Refresh",
  "description": "Launch campaign for the new Team tier",
  "created_at": "2026-05-02T10:00:00Z"
}

Common Use Cases

Create a project for next week's pricing page launch
Create three projects: one for the launch ad, one for the feature demo, one for the social cuts
Create a project called "Q4 Onboarding Refresh" with description "New onboarding flow for the Team plan"

Next Steps

After creating a project:
  1. Use AddChapter to add chapters
  2. Use AddPrompt to fill chapters with content
  3. Use ExportProject to render the final video

REST API Equivalent

This tool calls: POST /api/v1/projects See the Create Project API documentation for more details.