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

# Images

> This endpoint get the images of a TV episode.



## OpenAPI

````yaml get /3/tv/{series_id}/season/{season_number}/episode/{episode_number}/images
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}/season/{season_number}/episode/{episode_number}/images:
    parameters:
      - $ref: '#/components/parameters/SeriesID'
      - name: season_number
        in: path
        required: true
        schema:
          type: integer
          example: 2
      - name: episode_number
        in: path
        required: true
        schema:
          type: integer
          example: 1
    get:
      tags:
        - TV EPISODES
      summary: Images
      description: This endpoint get the images of a TV episode.
      operationId: images7
      parameters:
        - name: language
          in: query
          schema:
            type: string
        - name: include_image_language
          description: >-
            specify a comma separated list of ISO-639-1 values to query, for
            example- `en`,`null`
          in: query
          schema:
            type: string
      responses:
        '200':
          description: Images
          headers:
            Alt-Svc:
              schema:
                type: string
                example: h3=":443"; ma=86400
            Cache-Control:
              schema:
                type: string
                example: public, max-age=19884
            Connection:
              schema:
                type: string
                example: keep-alive
            Content-Encoding:
              schema:
                type: string
                example: gzip
            Date:
              schema:
                type: string
                example: Thu, 02 Jan 2025 08:27:39 GMT
            ETag:
              schema:
                type: string
                example: W/"e4f36f8209252c27f1e53c7aec720e2b"
            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 d4df04f0be711772e1710f5d9a876f60.cloudfront.net
                  (CloudFront)
            X-Amz-Cf-Id:
              schema:
                type: string
                example: B6aWXs3A7lZH40Xo9dfbcwZNCfFOlwxREypWjjOu1jz-FuP_6fsJig==
            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: '2130'
            x-memc-expires:
              schema:
                type: string
                example: '19884'
            x-memc-key:
              schema:
                type: string
                example: a1d38dee6dc2d75c5d73001a8b53c9bf
          content:
            application/json:
              schema:
                type: object
                properties:
                  id:
                    type: number
                    example: 66034
                  stills:
                    type: array
                    items:
                      type: object
                      properties:
                        aspect_ratio:
                          type: number
                          example: 1.778
                        file_path:
                          type: string
                          example: /9CGotvBzRPfdBuk46hR8pVIXCZO.jpg
                        height:
                          type: number
                          example: 720
                        iso_639_1:
                          nullable: true
                          example: null
                        vote_average:
                          type: number
                          example: 3.334
                        vote_count:
                          type: number
                          example: 1
                        width:
                          type: number
                          example: 1280
                    example:
                      - aspect_ratio: 1.778
                        file_path: /9CGotvBzRPfdBuk46hR8pVIXCZO.jpg
                        height: 720
                        iso_639_1: null
                        vote_average: 3.334
                        vote_count: 1
                        width: 1280
                      - aspect_ratio: 1.333
                        file_path: /tYI3JUFw9676MtdV1C5QeORCeBv.jpg
                        height: 300
                        iso_639_1: null
                        vote_average: 0.166
                        vote_count: 2
                        width: 400
                      - aspect_ratio: 1.778
                        file_path: /f73UdpmbjhvwLpB2V4FwiHdsuW7.jpg
                        height: 450
                        iso_639_1: null
                        vote_average: 0
                        vote_count: 0
                        width: 800
              examples:
                Images:
                  value:
                    id: 66034
                    stills:
                      - aspect_ratio: 1.778
                        file_path: /9CGotvBzRPfdBuk46hR8pVIXCZO.jpg
                        height: 720
                        iso_639_1: null
                        vote_average: 3.334
                        vote_count: 1
                        width: 1280
                      - aspect_ratio: 1.333
                        file_path: /tYI3JUFw9676MtdV1C5QeORCeBv.jpg
                        height: 300
                        iso_639_1: null
                        vote_average: 0.166
                        vote_count: 2
                        width: 400
                      - aspect_ratio: 1.778
                        file_path: /f73UdpmbjhvwLpB2V4FwiHdsuW7.jpg
                        height: 450
                        iso_639_1: null
                        vote_average: 0
                        vote_count: 0
                        width: 800
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

````