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

Retrieves a list of all projects for the authenticated user.

Parameters

limit
number
Maximum number of projects to return (default: 20)
offset
number
Number of projects to skip for pagination (default: 0)

Returns

Returns an array of your projects with their details.

Example Usage

In Claude

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

Direct Tool Call

{
  "name": "ListProjects",
  "arguments": {}
}

Response

{
  "projects": [
    {
      "id": "prj_abc123xyz",
      "name": "Pricing Page Refresh",
      "description": "Launch campaign for the new Team tier",
      "created_at": "2026-05-02T10:00:00Z"
    },
    {
      "id": "prj_def456uvw",
      "name": "Onboarding Walkthrough: Team plan",
      "description": "Refreshed walkthrough after the dashboard rework",
      "created_at": "2026-04-28T15:00:00Z"
    }
  ],
  "pagination": {
    "limit": 20,
    "offset": 0,
    "total": 2
  }
}

Common Use Cases

What projects do I have?
Do I have a project for the pricing page launch?
Show me my most recent projects

REST API Equivalent

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