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

# Read app release logs

Requires the v0.13 app-release capability for your account. See [app release workflows](/deploy/overview) for preparation, activation, and recovery.


## OpenAPI

````yaml openapi/app-releases-api.json GET /api/v1/workspaces/{id}/app-releases/{release_id}/logs
openapi: 3.1.0
info:
  title: Rigbox App Releases 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: []
paths:
  /api/v1/workspaces/{id}/app-releases/{release_id}/logs:
    get:
      tags:
        - App releases
      operationId: logs
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: string
        - name: release_id
          in: path
          required: true
          schema:
            type: string
      responses:
        '200':
          description: App release result
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/LogsResponse'
      security:
        - bearer: []
components:
  schemas:
    LogsResponse:
      type: object
      required:
        - lines
      properties:
        lines:
          type: array
          items:
            type: string
  securitySchemes:
    bearer:
      type: http
      scheme: bearer

````