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

# Screened Theatrically

> This endpoint get the seasons and episodes that have screened theatrically.



## OpenAPI

````yaml get /3/tv/{series_id}/screened_theatrically
openapi: 3.0.3
info:
  title: The Movie Database
  description: Reference
  version: 1.0.0
  contact: {}
servers:
  - url: https://api.themoviedb.org
security:
  - bearerAuth: []
tags:
  - name: ACCOUNT
  - name: AUTHENTICATION
  - name: CERTIFICATION
  - name: CHANGES
  - name: COLLECTION
  - name: COMPANIES
  - name: CONFIGURATION
  - name: CREDITS
  - name: DISCOVER
  - name: FIND
  - name: GENRES
  - name: GUEST SESSION
  - name: KEYWORDS
  - name: LISTS
  - name: MOVIE LISTS
  - name: MOVIES
  - name: NETWORK
  - name: PEOPLE
  - name: PEOPLE LISTS
  - name: REVIEWS
  - name: SEARCH
  - name: TRENDING
  - name: TV SERIES LIST
  - name: TV SERIES
  - name: TV SEASONS
  - name: TV EPISODES
  - name: TV EPISODES GROUPS
  - name: WATCH PROVIDERS
paths:
  /3/tv/{series_id}/screened_theatrically:
    parameters:
      - $ref: '#/components/parameters/SeriesID'
    get:
      tags:
        - TV SERIES
      summary: Screened Theatrically
      description: >-
        This endpoint get the seasons and episodes that have screened
        theatrically.
      operationId: screenedTheatrically
      responses:
        '200':
          description: Screened Theatrically
          headers:
            Alt-Svc:
              schema:
                type: string
                example: h3=":443"; ma=86400
            Cache-Control:
              schema:
                type: string
                example: public, max-age=17316
            Connection:
              schema:
                type: string
                example: keep-alive
            Content-Encoding:
              schema:
                type: string
                example: gzip
            Date:
              schema:
                type: string
                example: Wed, 29 Jan 2025 09:09:59 GMT
            ETag:
              schema:
                type: string
                example: W/"34cec8ed5d08629a7ee94efefe458a65"
            Server:
              schema:
                type: string
                example: openresty
            Transfer-Encoding:
              schema:
                type: string
                example: chunked
            Vary:
              schema:
                type: string
                example: Origin
            Via:
              schema:
                type: string
                example: >-
                  1.1 5f56e7df8387a5dd3295f126e9d480d0.cloudfront.net
                  (CloudFront)
            X-Amz-Cf-Id:
              schema:
                type: string
                example: k908uzPzNNZRGO3ebcM35k6hNAeKRrKwZFqW8rks2l0OusCAhRk5AA==
            X-Amz-Cf-Pop:
              schema:
                type: string
                example: LOS50-P2
            X-Cache:
              schema:
                type: string
                example: Miss from cloudfront
            x-memc:
              schema:
                type: string
                example: HIT
            x-memc-age:
              schema:
                type: string
                example: '7777'
            x-memc-expires:
              schema:
                type: string
                example: '17316'
            x-memc-key:
              schema:
                type: string
                example: 147cd2764e04887673efd6dcbf8885d1
          content:
            application/json:
              schema:
                type: object
                properties:
                  id:
                    type: number
                    example: 1399
                  results:
                    type: array
                    items:
                      type: object
                      properties:
                        episode_number:
                          type: number
                          example: 9
                        id:
                          type: number
                          example: 63102
                        season_number:
                          type: number
                          example: 4
                    example:
                      - episode_number: 9
                        id: 63102
                        season_number: 4
                      - episode_number: 10
                        id: 63103
                        season_number: 4
                      - episode_number: 9
                        id: 1054979
                        season_number: 5
                      - episode_number: 10
                        id: 1159054
                        season_number: 5
              examples:
                Screened Theatrically:
                  value:
                    id: 1399
                    results:
                      - episode_number: 9
                        id: 63102
                        season_number: 4
                      - episode_number: 10
                        id: 63103
                        season_number: 4
                      - episode_number: 9
                        id: 1054979
                        season_number: 5
                      - episode_number: 10
                        id: 1159054
                        season_number: 5
components:
  parameters:
    SeriesID:
      name: series_id
      description: a uniques identifier for a tv serie
      in: path
      required: true
      schema:
        type: integer
      examples:
        example1:
          value: 122
        example2:
          value: 123
        example3:
          value: 110381
        example4:
          value: 1433
        example5:
          value: 93405
        example6:
          value: 1399
        example7:
          value: 84007
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````