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

# List Automations

> Returns automations that belong to the organization associated with the authenticated service account.



## OpenAPI

````yaml /openapi/platform-v1.yaml get /api/v1/automations
openapi: 3.0.1
info:
  title: CrewAI Platform API
  version: v1
  description: Supported public API for CrewAI Platform.
servers:
  - url: https://app.crewai.com
    description: Current CrewAI Platform host
security:
  - bearerAuth: []
tags:
  - name: Users
    description: Users in the organization.
  - name: Status
    description: Platform health and API availability.
  - name: Automations
    description: Automations and their source artifacts.
paths:
  /api/v1/automations:
    get:
      tags:
        - Automations
      summary: List Automations
      description: >-
        Returns automations that belong to the organization associated with the
        authenticated service account.
      operationId: listAutomations
      responses:
        '200':
          description: OK
          content:
            application/json:
              examples:
                ok:
                  value:
                    data:
                      - id: 4f6d0d9a-7b78-4c6a-b64f-2e2e3d2c8f9a
                        name: customer-support
                        environment_variable_keys:
                          - OPENAI_API_KEY
                          - PORT
                        status: online
                        created_by:
                          type: ServiceAccount
                          id: f9630a31-1640-4f02-865b-3f92e4d99335
                        created_at: '2026-07-07T00:00:00Z'
                        updated_at: '2026-07-07T00:00:00Z'
                  summary: Automations in the authenticated organization
              schema:
                type: object
                required:
                  - data
                additionalProperties: false
                properties:
                  data:
                    type: array
                    items:
                      type: object
                      required:
                        - id
                        - name
                        - environment_variable_keys
                        - status
                        - created_by
                        - created_at
                        - updated_at
                      additionalProperties: false
                      properties:
                        id:
                          type: string
                          format: uuid
                          example: 4f6d0d9a-7b78-4c6a-b64f-2e2e3d2c8f9a
                        name:
                          type: string
                          example: customer-support
                        environment_variable_keys:
                          type: array
                          items:
                            type: string
                          example:
                            - OPENAI_API_KEY
                            - PORT
                        status:
                          type: string
                          enum:
                            - in_progress
                            - online
                            - paused
                            - failed
                            - unknown
                          example: in_progress
                          description: >
                            Automation lifecycle status:

                            - `in_progress`: The automation is being created or
                            redeployed.

                            - `online`: The automation is deployed and
                            available.

                            - `paused`: The automation is deployed but paused.

                            - `failed`: The latest deployment failed.

                            - `unknown`: The platform could not determine the
                            status.
                        created_by:
                          type: object
                          required:
                            - type
                            - id
                          additionalProperties: false
                          properties:
                            type:
                              type: string
                              example: User
                              enum:
                                - User
                                - ServiceAccount
                              x-crewai-enum-format: freeform
                            id:
                              type: string
                              format: uuid
                              example: 4f6d0d9a-7b78-4c6a-b64f-2e2e3d2c8f9a
                          nullable: true
                        created_at:
                          type: string
                          format: date-time
                          example: '2026-07-07T00:00:00Z'
                        updated_at:
                          type: string
                          format: date-time
                          example: '2026-07-07T00:00:00Z'
        '401':
          description: Unauthorized
          content:
            application/json:
              examples:
                unauthorized:
                  value:
                    errors:
                      - type: >-
                          https://docs-platform.crewai.com/api/problems/unauthorized
                        code: unauthorized
                        title: Unauthorized
                        status: 401
                        detail: Missing or invalid bearer token.
                  summary: Missing or invalid bearer token
              schema:
                $ref: '#/components/schemas/ErrorEnvelope'
components:
  schemas:
    ErrorEnvelope:
      type: object
      required:
        - errors
      additionalProperties: false
      properties:
        errors:
          type: array
          minItems: 1
          items:
            $ref: '#/components/schemas/Error'
    Error:
      type: object
      description: Public API error object.
      required:
        - type
        - code
        - title
        - status
        - detail
      additionalProperties: false
      properties:
        type:
          type: string
          format: uri
          enum:
            - https://docs-platform.crewai.com/api/problems/bad_request
            - https://docs-platform.crewai.com/api/problems/conflict
            - https://docs-platform.crewai.com/api/problems/forbidden
            - https://docs-platform.crewai.com/api/problems/internal_error
            - https://docs-platform.crewai.com/api/problems/not_found
            - https://docs-platform.crewai.com/api/problems/service_unavailable
            - >-
              https://docs-platform.crewai.com/api/problems/tool_execution_failed
            - https://docs-platform.crewai.com/api/problems/unauthorized
            - https://docs-platform.crewai.com/api/problems/validation_error
          example: https://docs-platform.crewai.com/api/problems/bad_request
        code:
          type: string
          enum:
            - bad_request
            - conflict
            - forbidden
            - internal_error
            - not_found
            - service_unavailable
            - tool_execution_failed
            - unauthorized
            - validation_error
          example: bad_request
        title:
          type: string
          x-crewai-enum-format: freeform
          enum:
            - Bad request
            - Conflict
            - Forbidden
            - Internal error
            - Not found
            - Service unavailable
            - Tool execution failed
            - Unauthorized
            - Validation error
          example: Bad request
        status:
          type: integer
          enum:
            - 400
            - 401
            - 403
            - 404
            - 409
            - 422
            - 500
            - 503
          example: 400
        detail:
          type: string
          example: The request is invalid.
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: opaque

````