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

> ## Agent Instructions
> Automate.ax automations are TypeScript programs.
> Use Bun for installation and command examples.
> Use Automate.ax for the product name and automate.ax for the package, CLI, and domain.
> Treat documented public APIs as current; do not invent transitional or deprecated names.

# List projects

> Lists projects visible to the authenticated user, optionally filtered by organization or query.



## OpenAPI

````yaml https://automate.ax/api/v1/openapi.json get /projects
openapi: 3.1.1
info:
  title: Automate.ax API
  version: 0.0.0
servers:
  - url: https://automate.ax/api/v1
security:
  - bearerAuth: []
paths:
  /projects:
    get:
      tags:
        - Projects
      summary: List projects
      description: >-
        Lists projects visible to the authenticated user, optionally filtered by
        organization or query.
      operationId: listProjects
      parameters:
        - name: organizationId
          in: query
          schema:
            type: string
          allowEmptyValue: true
          allowReserved: true
        - name: query
          in: query
          schema:
            type: string
            minLength: 1
          allowEmptyValue: true
          allowReserved: true
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Project'
components:
  schemas:
    Project:
      type: object
      properties:
        activeDeploymentId:
          anyOf:
            - type: string
            - type: 'null'
        id:
          type: string
        name:
          type: string
        organizationId:
          type: string
        createdAt:
          type: string
          format: date-time
          x-native-type: date
        createdBy:
          anyOf:
            - type: string
            - type: 'null'
        org:
          type: object
          properties:
            id:
              type: string
            name:
              type: string
          required:
            - id
            - name
        activeAutomations:
          type: array
          items:
            type: object
            properties:
              description:
                type: string
              id:
                type: string
              identityKey:
                type: string
            required:
              - description
              - id
              - identityKey
      required:
        - activeDeploymentId
        - id
        - name
        - organizationId
        - createdAt
        - createdBy
        - org
        - activeAutomations
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: Automate.ax user session bearer token.

````