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

# Subtitles (HLS/VTT)

> Повертає проксійований плейлист субтитрів у форматі WebVTT / HLS.



## OpenAPI

````yaml GET /subs.m3u8
openapi: 3.0.3
info:
  title: UAFilms API
  description: >-
    API агрегатора українського медіа-контенту та OMSS (Open Media Streaming
    Specification) стрімінговий сервер з підтримкою HLS проксі, динамічного
    Server-Sent Events (SSE) парсингу, системи акаунтів та персональних
    API-ключів.
  version: 1.2.0
servers:
  - url: https://films.aartzz.pp.ua
    description: Production Server
  - url: http://localhost:3000
    description: Local Development Server
security: []
paths:
  /subs.m3u8:
    get:
      summary: HLS Субтитри
      description: Повертає проксійований плейлист субтитрів у форматі WebVTT / HLS.
      parameters:
        - name: url
          in: query
          required: false
          schema:
            type: string
        - name: cdn
          in: query
          required: false
          schema:
            type: string
        - name: id
          in: query
          required: false
          schema:
            type: string
        - name: lang
          in: query
          required: false
          schema:
            type: string
            default: ua
      responses:
        '200':
          description: M3U8 плейлист субтитрів
          content:
            application/vnd.apple.mpegurl:
              schema:
                type: string

````