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

# List Projects

> List your projects with optional filtering and pagination.



## OpenAPI

````yaml GET /projects
openapi: 3.1.0
info:
  title: Faces API
  version: '1.0'
  description: >-
    Faces API for creating and managing presentations. Generate presentations
    from prompts, or read and write individual slides. Each slide is a React
    component (face.tsx) with content blocks (face.content.json) and editor
    controls (face.controls.json).
servers:
  - url: https://faces.app/api/v1
    description: API v1
security:
  - bearerAuth: []
paths:
  /projects:
    get:
      tags:
        - Projects
      summary: List projects
      description: >-
        List projects you can access — owned, team-shared with a team you belong
        to, or shared with you as a collaborator. Supports cursor-based
        pagination.
      operationId: listProjects
      parameters:
        - schema:
            type: string
            enum:
              - 'true'
              - 'false'
            description: Filter by published status.
          required: false
          name: published
          in: query
        - schema:
            type: number
            minimum: 1
            maximum: 100
            default: 20
            description: Max results per page.
          required: false
          name: limit
          in: query
        - schema:
            type: string
            description: Pagination cursor from a previous response.
          required: false
          name: cursor
          in: query
      responses:
        '200':
          description: Project list
          content:
            application/json:
              schema:
                type: object
                properties:
                  projects:
                    type: array
                    items:
                      type: object
                      properties:
                        id:
                          type: string
                        slug:
                          type: string
                        name:
                          type: string
                        publishedAt:
                          type:
                            - string
                            - 'null'
                          format: date-time
                        updatedAt:
                          type: string
                          format: date-time
                        editorUrl:
                          type: string
                          format: uri
                      required:
                        - id
                        - slug
                        - name
                        - publishedAt
                        - updatedAt
                        - editorUrl
                  nextCursor:
                    type: string
                    description: Pass as cursor to fetch the next page.
                required:
                  - projects
      security:
        - bearerAuth: []
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: API key with "faces_" prefix. Create one at Settings > Developers.

````