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

# List Available Applications

> Use this endpoint to retrieve the catalog of Lerian products and plugins available for creation. Each entry returns only its name and display name.



## OpenAPI

````yaml en/openapi/v3-current/AM-identity.yaml get /v1/applications/available
openapi: 3.1.0
info:
  title: Identity Plugin
  description: ''
  version: 2.4.5
servers:
  - url: https://identity.sandbox.lerian.net
security: []
tags:
  - name: Groups API
  - name: Applications API
  - name: Users API
  - name: MFA API
  - name: Providers API
  - name: Application Providers API
paths:
  /v1/applications/available:
    get:
      tags:
        - Applications API
      summary: List Available Applications
      description: >-
        Use this endpoint to retrieve the catalog of Lerian products and plugins
        available for creation. Each entry returns only its name and display
        name.
      parameters: []
      responses:
        '200':
          description: The catalog of applications available for creation.
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ApplicationAvailableResponse'
              example:
                - displayName: Midaz
                  name: midaz
                - displayName: Reporter
                  name: reporter
          headers: {}
        '500':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorMessage'
              examples:
                Error0006:
                  $ref: '#/components/examples/Error0006'
          headers: {}
      security:
        - bearer: []
components:
  schemas:
    ApplicationAvailableResponse:
      description: >-
        Summary of an Application available for creation, limited to its name
        and display name.
      type: object
      required:
        - displayName
        - name
      properties:
        displayName:
          type: string
          description: Human-readable name of the available application.
          example: Midaz
        name:
          type: string
          description: >-
            The Lerian product or plugin identifier used when creating the
            application.
          example: midaz
    ErrorMessage:
      description: The response message error.
      type: object
      properties:
        code:
          type: string
          description: A unique, stable identifier for the error.
        title:
          type: string
          description: A brief summary of the issue.
        message:
          type: string
          description: Detailed guidance for resolving the error.
  examples:
    Error0006:
      summary: Internal Server Error
      value:
        code: IDE-0006
        title: Internal Server Error
        message: The server encountered an unexpected error. Please try again later.
  securitySchemes:
    bearer:
      type: http
      scheme: bearer
      description: The authorization token in the 'Bearer <token>' format.

````