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

# List Apps

> List all applications present in organization. This lists top-level application info. To access app versions and specific version info, use [List App Versions](https://docs.managexr.com/api-reference/endpoint/v1/list-app-versions)



## OpenAPI

````yaml Get /v1/apps/
openapi: 3.1.0
info:
  title: ManageXR API
  description: API documentation for ManageXR
  version: 1.0.0
servers:
  - url: https://managexrapi.com
    description: ManageXR API Server
security:
  - basicAuth: []
paths:
  /v1/apps/:
    get:
      summary: List apps in organization
      description: >-
        List all applications present in organization. This lists top-level
        application info. To access app versions and specific version info, use
        [List App
        Versions](https://docs.managexr.com/api-reference/endpoint/v1/list-app-versions)
      parameters:
        - name: organizationId
          in: query
          required: false
          schema:
            type: string
          description: >
            Unique identifier of the organization. This parameter is only
            necessary when using multi-organization API keys. 


            Defaults to the organizationId associated with the API key.
      responses:
        '200':
          description: A list of app profiles
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      type: object
                      properties:
                        packageName:
                          type: string
                          description: Package name of the app
                          example: com.example.app
                        title:
                          type: string
                          description: Title of the app
                          example: My Awesome App
                        description:
                          type: string
                          description: Description of the app
                          example: A fantastic app for managing XR content
                        categories:
                          type: array
                          items:
                            type: string
                          description: Categories the app belongs to
                          example:
                            - Education
                            - Productivity
                        iconUrl:
                          type: string
                          format: uri
                          description: URL of the app's icon
                          example: >-
                            https://storage.example.com/apps/com.example.app/icon.png
                        numVersions:
                          type: number
                          description: Number of versions of the app
                          example: 5
              example:
                data:
                  - packageName: com.example.app
                    title: My Awesome App
                    description: A fantastic app for managing XR content
                    categories:
                      - Education
                      - Productivity
                    iconUrl: https://storage.example.com/apps/com.example.app/icon.png
                    numVersions: 5
                  - packageName: com.another.app
                    title: Another App
                    description: Another great app for XR
                    categories:
                      - Training
                      - Simulation
                    iconUrl: https://storage.example.com/apps/com.another.app/icon.png
                    numVersions: 3
components:
  securitySchemes:
    basicAuth:
      type: http
      scheme: basic
      description: >
        API key based authentication where <encoded-value> is the Base64
        encoding of `API_KEY_ID`:`API_KEY_SECRET`

        - **Username**: The API Key ID.

        - **Password**: The API Key Secret.

````