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

# Server log tail



## OpenAPI

````yaml /api-reference/greenlight/openapi.json get /tail
openapi: 3.1.0
info:
  title: Greenlight — Screenplay Conversion & Validation API
  description: >-
    REST API for the Greenlight screenplay microservice. Converts between
    screenplay formats (FDX, Fountain, FadeIn, PDF) and ScreenJSON, with
    validation and encryption.
  version: 1.0.0
  contact:
    name: Edverum
servers:
  - url: http://localhost:8080
    description: Local development
  - url: http://localhost:19000
    description: Docker compose (mapped port)
security:
  - bearerAuth: []
paths:
  /tail:
    get:
      tags:
        - Debug
      summary: Server log tail
      operationId: getLogTail
      responses:
        '200':
          description: Recent log lines
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````