> ## 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 configuration snapshot



## OpenAPI

````yaml /api-reference/greenlight/openapi.json get /setup
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:
  /setup:
    get:
      tags:
        - Config
      summary: Server configuration snapshot
      operationId: getSetup
      responses:
        '200':
          description: Configuration snapshot
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````