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

# List Apps

> List all apps across your workspaces, or filter by workspace_id.



## OpenAPI

````yaml GET /api/v1/apps
openapi: 3.1.0
info:
  title: Rigbox Public API
  description: >-
    Gateway-owned public API for Rigbox. The gateway composes its local
    lifecycle API with service-owned exported specs.
  contact:
    name: Rigbox
    url: https://rigbox.dev
  license:
    name: ''
  version: 1.0.0
servers:
  - url: https://api.rigbox.dev
    description: Production gateway
security: []
tags:
  - name: Workspaces
  - name: CLI
  - name: Observability
  - name: Auth
  - name: API Keys
  - name: Access Control
  - name: Apps
  - name: App Catalog
  - name: Logs
  - name: AI
  - name: Tools
  - name: Snapshots
  - name: SSH Keys
  - name: Templates
  - name: Setup Scripts
  - name: Service Specs
  - name: Deploy
  - name: Community
  - name: User Settings
  - name: Roadmap
  - name: System
paths:
  /api/v1/apps:
    get:
      tags:
        - Apps
      summary: |-
        List apps for the authenticated user (or scoped to a workspace via
        `?workspace_id=`). Cursor-paginated under the shared `Page<T>` envelope.
      description: >-
        List the user's apps, cursor-paginated and optionally scoped to one
        workspace.
      operationId: list_apps
      parameters:
        - name: workspace_id
          in: query
          description: Restrict to one workspace
          required: false
          schema:
            type: string
        - name: max_results
          in: query
          description: >-
            Maximum items to return. Clamped to `[1, MAX_LIMIT]`. Default 50.


            Deserialized leniently from a string: axum's `Query`
            (serde_urlencoded)

            cannot coerce a *flattened* numeric field, so a struct that

            `#[serde(flatten)]`s `PageParams` (e.g. `ListAppsQuery`) would
            otherwise

            fail with "invalid type: string, expected u32" on `?max_results=50`.
          required: false
          schema:
            type: integer
            format: int32
            minimum: 0
        - name: cursor
          in: query
          description: |-
            Opaque cursor returned by a prior call's `next_cursor`. Omit on the
            first page.
          required: false
          schema:
            type: string
      responses:
        '200':
          description: Apps page
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Page_AppView'
      security:
        - bearer: []
components:
  schemas:
    Page_AppView:
      type: object
      description: 'Paginated response envelope. `next_cursor: None` ⇒ last page.'
      required:
        - items
      properties:
        items:
          type: array
          items:
            allOf:
              - $ref: '#/components/schemas/ApiApp'
        next_cursor:
          type:
            - string
            - 'null'
    ApiApp:
      type: object
      description: >-
        OpenAPI-facing mirror of the canonical app payload.


        Response types can keep serializing `rig_data_store::models::App` while

        pointing schema generation at this local mirror to avoid cross-crate
        derive

        coupling in `utoipa`.
      required:
        - id
        - name
        - subdomain
        - user_id
        - node_id
        - workspace_id
        - port
        - visibility
        - allowed_emails
        - status
        - metadata
        - system_tags
        - protocol
        - app_kind
        - managed
        - depends_on
        - custom_domain_verified
        - created_at
        - updated_at
      properties:
        allowed_emails:
          type: array
          items:
            type: string
        app_kind:
          type: string
        created_at:
          type: string
          format: date-time
        custom_domain:
          type:
            - string
            - 'null'
        custom_domain_verified:
          type: boolean
        depends_on:
          type: array
          items:
            type: string
        description:
          type:
            - string
            - 'null'
        id:
          type: string
        managed:
          type: boolean
        metadata: {}
        name:
          type: string
        node_id:
          type: string
        port:
          type: integer
          format: int32
          minimum: 0
        protocol:
          type: string
        status:
          $ref: '#/components/schemas/AppStatus'
        subdomain:
          type: string
        system_tags:
          type: array
          items:
            type: string
        updated_at:
          type: string
          format: date-time
        user_id:
          type: string
        visibility:
          $ref: '#/components/schemas/Visibility'
        workspace_id:
          type: string
    AppStatus:
      type: string
      enum:
        - active
        - inactive
        - installing
        - error
    Visibility:
      type: string
      enum:
        - private
        - public
        - privileged
  securitySchemes:
    bearer:
      type: http
      scheme: bearer

````