Skip to main content

Overview

Exports a complete video project to a downloadable MP4 file. All chapters are rendered and combined into a single video.
Processing time: Exports typically take 2-5 minutes depending on project complexity.

Parameters

project_id
string
required
The project ID to export (e.g., prj_abc123xyz)

Returns

Returns the export job status. Check back periodically to get the download URL.

Example Usage

In Claude

Export my Product Demo project
I'm done with the edits - export the project to video
Export project prj_abc123xyz and let me know when it's ready

Direct Tool Call

{
  "name": "ExportProject",
  "arguments": {
    "project_id": "prj_abc123xyz"
  }
}

Response (Started)

{
  "status": "queued",
  "message": "Export started",
  "estimated_time": "2-5 minutes"
}

Response (After Completion)

{
  "status": "completed",
  "download_url": "https://assets.babou.ai/exports/prj_abc123xyz.mp4",
  "started_at": "2025-12-02T10:05:00Z",
  "completed_at": "2025-12-02T10:08:00Z",
  "duration_seconds": 180
}

Common Use Cases

My video is complete - export it so I can download it
Is my export ready yet?
Claude will check the status and let you know when it’s done.
Export my project and give me the download link
Claude will start the export and provide the URL once ready.

Before Exporting

Make sure:
  • ✓ All chapters have been created
  • ✓ All prompts have completed processing
  • ✓ You’ve reviewed the content
Only completed chapters will be included in the export. Chapters without content or with failed prompts will be skipped.

Workflow Example

In Claude

User: Create a product video with intro, features, and outro chapters

Claude: [Creates project, adds chapters, submits prompts]

User: Export the project

Claude: [Starts export, waits for completion]
Claude: Your video is ready! Download it here: [URL]

Export States

The export can be in one of these states:
StateDescription
queuedExport is queued and waiting to start
processingExport is actively being rendered
completedExport finished successfully, download URL available
failedExport failed, error message provided

Download the Video

Once the export status is completed, you can download the video from the download_url:
The video is ready at: https://assets.babou.ai/exports/prj_abc123xyz.mp4
Download URLs are temporary. Download your video promptly after the export completes.

Troubleshooting

Complex projects with multiple chapters and effects take longer to render. Wait patiently or check the status after a few minutes.
Common causes:
  • No completed chapters in the project
  • Corrupted prompts or assets
  • Server issues
Try checking chapter status and retry the export.
The download URL is only available when status is completed. Keep checking the export status until it finishes.

REST API Equivalent

This tool calls:
  1. POST /api/v1/projects/{projectId}/export (start export)
  2. GET /api/v1/projects/{projectId}/export (check status)
See the Export API documentation for more details.