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

# List projects in the caller’s org

> Returns every project owned by the team resolved from the session cookie orgCode, ordered by createdAt desc. Empty array if the caller has no team.



## OpenAPI

````yaml /api-reference/openapi.json get /v1/projects
openapi: 3.1.0
info:
  title: no-tickets API
  version: 0.1.0
  description: REST API for the no-tickets team dashboard.
servers: []
security: []
paths:
  /v1/projects:
    get:
      tags:
        - projects
      summary: List projects in the caller’s org
      description: >-
        Returns every project owned by the team resolved from the session cookie
        orgCode, ordered by createdAt desc. Empty array if the caller has no
        team.
      operationId: listProjects
      responses:
        '200':
          description: Projects
          content:
            application/json:
              schema:
                $schema: https://json-schema.org/draft/2020-12/schema
                type: object
                properties:
                  projects:
                    type: array
                    items:
                      type: object
                      properties:
                        id:
                          type: string
                        name:
                          type: string
                        description:
                          anyOf:
                            - type: string
                            - type: 'null'
                        status:
                          type: string
                        teamId:
                          type: string
                        createdAt:
                          type: string
                      required:
                        - id
                        - name
                        - description
                        - status
                        - teamId
                        - createdAt
                      additionalProperties: false
                required:
                  - projects
                additionalProperties: false
        '401':
          description: No session cookie
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
      security:
        - sessionAuth: []
components:
  schemas:
    ErrorResponse:
      $schema: https://json-schema.org/draft/2020-12/schema
      type: object
      properties:
        error:
          type: string
        code:
          type: string
          enum:
            - AUTH_REQUIRED
            - EMPTY_QUERY_FILTER
            - INSUFFICIENT_PERMISSIONS
            - ONBOARDING_REQUIRED
            - PROJECT_NAME_TAKEN
            - PROJECT_NOT_FOUND
            - TEAM_MEMBERSHIP_REQUIRED
            - VALIDATION_FAILED
        docsUrl:
          type: string
      required:
        - error
        - code
        - docsUrl
      additionalProperties: false
  securitySchemes:
    sessionAuth:
      type: apiKey
      in: cookie
      name: session

````