> ## 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.

# Stream App Logs

> Stream app logs in real-time via Server-Sent Events.

Set `Accept: text/event-stream` and consume the response as an SSE stream. Supports `lines` and `interval_ms` query parameters.


## OpenAPI

````yaml GET /api/v1/apps/{id}/logs/stream
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/{id}/logs/stream:
    get:
      tags:
        - Logs
      summary: Stream app logs via Server-Sent Events.
      description: Stream an app's logs in real time over Server-Sent Events.
      operationId: stream_app_logs
      parameters:
        - name: id
          in: path
          description: App ID
          required: true
          schema:
            type: string
      responses:
        '200':
          description: SSE log stream
      security:
        - bearer: []
components:
  securitySchemes:
    bearer:
      type: http
      scheme: bearer

````