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

# List Applications

> List applications for a specific organization.

Retrieve a paginated list of applications belonging to the specified organization.
Requires the `read:applications` permission, available to users with a `member` or `owner` role in the organization, or to API keys with this permission assigned.

Returns:
    Paginated list of applications



## OpenAPI

````yaml GET /applications
openapi: 3.1.0
info:
  title: Unomiq Management API
  description: >-

    API for managing settings for organizations, applications and API keys.


    ## Authentication


    All API endpoints require authentication via JWT token in the Authorization
    header:


    ```

    Authorization: Bearer <your_jwt_token>

    ```
        
  version: 1.0.0
servers:
  - url: https://management-api.unomiq.com
    description: Production
security: []
paths:
  /applications:
    get:
      tags:
        - applications
      summary: List Applications
      description: >-
        List applications for a specific organization.


        Retrieve a paginated list of applications belonging to the specified
        organization.

        Requires the `read:applications` permission, available to users with a
        `member` or `owner` role in the organization, or to API keys with this
        permission assigned.


        Returns:
            Paginated list of applications
      operationId: list_applications_applications_get
      parameters:
        - name: organization_id
          in: query
          required: true
          schema:
            type: string
            description: Organization ID to filter applications
            title: Organization Id
          description: Organization ID to filter applications
        - name: page
          in: query
          required: false
          schema:
            type: integer
            minimum: 1
            description: Page number for pagination (1-indexed)
            default: 1
            title: Page
          description: Page number for pagination (1-indexed)
        - name: limit
          in: query
          required: false
          schema:
            type: integer
            maximum: 100
            minimum: 1
            description: Number of items per page
            default: 20
            title: Limit
          description: Number of items per page
        - name: region
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            description: Filter applications by region (US or EU)
            title: Region
          description: Filter applications by region (US or EU)
        - name: pricing_plan
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            description: Filter applications by pricing plan
            title: Pricing Plan
          description: Filter applications by pricing plan
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApplicationListResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - HTTPBearer: []
components:
  schemas:
    ApplicationListResponse:
      properties:
        data:
          items:
            $ref: '#/components/schemas/ApplicationDetail'
          type: array
          title: Data
        pagination:
          additionalProperties: true
          type: object
          title: Pagination
      type: object
      required:
        - data
        - pagination
      title: ApplicationListResponse
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ApplicationDetail:
      properties:
        id:
          type: string
          title: Id
        organization_id:
          type: string
          title: Organization Id
        name:
          type: string
          title: Name
        region:
          type: string
          title: Region
        pricing_plan:
          type: string
          title: Pricing Plan
        created_at:
          type: string
          title: Created At
        updated_at:
          type: string
          title: Updated At
      type: object
      required:
        - id
        - organization_id
        - name
        - region
        - pricing_plan
        - created_at
        - updated_at
      title: ApplicationDetail
    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
  securitySchemes:
    HTTPBearer:
      type: http
      scheme: bearer

````