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

# List Cloud Apps

> List provisioned apps for the specified organization/user.



## OpenAPI

````yaml https://app.stainless.com/api/spec/documented/morphik/openapi.documented.yml get /apps
openapi: 3.1.0
info:
  title: FastAPI
  version: 0.1.0
servers: []
security: []
paths:
  /apps:
    get:
      summary: List Cloud Apps
      description: List provisioned apps for the specified organization/user.
      operationId: list_cloud_apps_apps_get
      parameters:
        - name: org_id
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            description: Filter apps by organization ID
            title: Org Id
          description: Filter apps by organization ID
        - name: user_id
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            description: Filter apps by creator
            title: User Id
          description: Filter apps by creator
        - name: app_id_filter
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            description: >-
              JSON filter expression for app IDs (supports $and/$or/$not/$nor
              and $eq/$ne/$gt/$gte/$lt/$lte/$in/$nin/$exists/$regex/$contains).
            title: App Id Filter
          description: >-
            JSON filter expression for app IDs (supports $and/$or/$not/$nor and
            $eq/$ne/$gt/$gte/$lt/$lte/$in/$nin/$exists/$regex/$contains).
        - name: app_name_filter
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            description: >-
              JSON filter expression for app name (supports $and/$or/$not/$nor
              and $eq/$ne/$gt/$gte/$lt/$lte/$in/$nin/$exists/$regex/$contains).
            title: App Name Filter
          description: >-
            JSON filter expression for app name (supports $and/$or/$not/$nor and
            $eq/$ne/$gt/$gte/$lt/$lte/$in/$nin/$exists/$regex/$contains).
        - name: limit
          in: query
          required: false
          schema:
            type: integer
            maximum: 500
            minimum: 1
            default: 100
            title: Limit
        - name: offset
          in: query
          required: false
          schema:
            type: integer
            minimum: 0
            default: 0
            title: Offset
        - name: authorization
          in: header
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            title: Authorization
        - name: X-Morphik-Admin-Secret
          in: header
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            title: X-Morphik-Admin-Secret
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      x-codeSamples:
        - lang: JavaScript
          source: |-
            import Morphik from 'morphik';

            const client = new Morphik({
              apiKey: process.env['MORPHIK_API_KEY'], // This is the default and can be omitted
            });

            const response = await client.cloud.listApps();

            console.log(response);
        - lang: cURL
          source: |-
            curl https://api.morphik.ai/apps \
                -H "Authorization: Bearer $MORPHIK_API_KEY"
components:
  schemas:
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError

````