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

# List Projects

> List active projects for the authenticated user, newest first.

Each summary includes the count of active sessions assigned to the
project so the sidebar can show usage at a glance without a second
round trip.

# IDOR AUDIT PASS — filters by Project.user_id == authenticated user_id



## OpenAPI

````yaml get /api/v1/projects
openapi: 3.1.0
info:
  title: EDN Memory Engine
  version: 0.1.0
servers:
  - description: EDN evaluation endpoint
    url: https://api.tensorpro.ai
security:
  - EDNApiKey: []
paths:
  /api/v1/projects:
    get:
      summary: List Projects
      description: |-
        List active projects for the authenticated user, newest first.

        Each summary includes the count of active sessions assigned to the
        project so the sidebar can show usage at a glance without a second
        round trip.

        # IDOR AUDIT PASS — filters by Project.user_id == authenticated user_id
      operationId: list_projects_api_v1_projects_get
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ProjectsListResponse'
          description: Successful Response
components:
  schemas:
    ProjectsListResponse:
      properties:
        projects:
          items:
            $ref: '#/components/schemas/ProjectSummary'
          title: Projects
          type: array
        total:
          title: Total
          type: integer
      required:
        - projects
        - total
      title: ProjectsListResponse
      type: object
    ProjectSummary:
      properties:
        created_at:
          title: Created At
          type: string
        id:
          title: Id
          type: string
        name:
          title: Name
          type: string
        session_count:
          default: 0
          title: Session Count
          type: integer
        source_count:
          default: 0
          title: Source Count
          type: integer
        updated_at:
          title: Updated At
          type: string
      required:
        - id
        - name
        - created_at
        - updated_at
      title: ProjectSummary
      type: object
  securitySchemes:
    EDNApiKey:
      description: >-
        EDN API key presented as 'Bearer <key>' in the Authorization header.
        Create and manage keys from the Console.
      in: header
      name: Authorization
      type: apiKey

````