> ## Documentation Index
> Fetch the complete documentation index at: https://developers.supapost.so/llms.txt
> Use this file to discover all available pages before exploring further.

# List Projects

> List all projects for the authenticated team

Returns all projects for the current team, sorted by most recently updated.

## Authentication

<ParamField header="Authorization" type="string">
  Bearer token. `Bearer <supabase-jwt>`.
</ParamField>

## Query Parameters

<ParamField query="type" type="string">
  Filter projects by type, e.g. `"slideshow"`.
</ParamField>

<ResponseExample>
  ```json 200 theme={null}
  [
    {
      "id": "uuid-1234",
      "name": "Morning Routine Carousel",
      "type": "slideshow",
      "thumbnail_url": "https://cdn.supapost.so/assets/team/thumb.jpg",
      "status": "draft",
      "created_at": "2026-04-01T12:00:00Z",
      "updated_at": "2026-04-07T15:30:00Z"
    }
  ]
  ```
</ResponseExample>
