Skip to main content

Overview

Retrieves a list of all video projects for the authenticated user.

Parameters

This tool takes no parameters.

Returns

Returns an array of all your video projects with their details.

Example Usage

In Claude

Show me all my video projects
What projects do I have?
List my Babou projects

Direct Tool Call

{
  "name": "ListVideoProjects",
  "arguments": {}
}

Response

{
  "projects": [
    {
      "id": "prj_abc123xyz",
      "name": "Product Demo",
      "description": "Feature showcase",
      "created_at": "2025-12-02T10:00:00Z"
    },
    {
      "id": "prj_def456uvw",
      "name": "Tutorial Series",
      "description": "How-to videos",
      "created_at": "2025-12-01T15:00:00Z"
    }
  ],
  "pagination": {
    "limit": 20,
    "offset": 0,
    "total": 2
  }
}

Common Use Cases

What video projects do I have?
Do I have a project called "Product Demo"?
Show me my recent video projects

REST API Equivalent

This tool calls: GET /api/v1/projects See the List Projects API documentation for more details.