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

# Batch Metadata

> Дозволяє одним швидким запитом отримати назви та постери для списку медіа-ідентифікаторів (корисно для бібліотек, обраного, історії перегляду).



## OpenAPI

````yaml POST /api/batch-meta
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:
  /api/batch-meta:
    post:
      summary: Пакетне отримання метаданих
      description: >-
        Дозволяє одним швидким запитом отримати назви та постери для списку
        медіа-ідентифікаторів (корисно для бібліотек, обраного, історії
        перегляду).
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                ids:
                  type: array
                  items:
                    type: string
                  example:
                    - movie_1423191
                    - tv_284445_s1_e1
                    - '1315772'
      responses:
        '200':
          description: Словник метаданих по ID
          content:
            application/json:
              schema:
                type: object
                additionalProperties:
                  type: object
                  properties:
                    title:
                      type: string
                    posterUrl:
                      type: string
                      nullable: true
                    year:
                      type: integer
                      nullable: true

````