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

# List available tasks



## OpenAPI

````yaml /api-reference/greenlight/openapi.json get /tasks
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:
  /tasks:
    get:
      tags:
        - Tasks
      summary: List available tasks
      operationId: listTasks
      responses:
        '200':
          description: Task definitions
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````