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

# List Projects

> Returns a list of selectable projects



## OpenAPI

````yaml get /projects
openapi: 3.0.0
info:
  title: Daytalog API
  version: 0.1.0
servers:
  - url: http://localhost:5252
security:
  - ApiKeyAuth: []
paths:
  /projects:
    get:
      summary: List Projects
      description: Returns a list of selectable projects
      responses:
        '200':
          description: Array of projects
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ProjectSummary'
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/UnauthorizeResponse'
components:
  schemas:
    ProjectSummary:
      type: object
      properties:
        label:
          type: string
          example: My Project
        path:
          type: string
          example: /Users/johndoe/Documents/Daytalog/My Project
          description: Path to project folder
        active:
          type: boolean
          description: TRUE if this project is the current active project
    UnauthorizeResponse:
      type: object
      properties:
        error:
          type: string
          example: Unauthorized
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: x-api-token

````