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

# Details

> This endpoint get movies collection details by ID.



## OpenAPI

````yaml get /3/collection/{collection_id}
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/collection/{collection_id}:
    parameters:
      - name: collection_id
        in: path
        required: true
        description: a uniques identfier for a movie or tv collection
        schema:
          type: integer
          example: 456
    get:
      tags:
        - COLLECTION
      summary: Details
      description: This endpoint retrieves movie collection details by ID.
      operationId: details1
      parameters:
        - name: language
          in: query
          description: >-
            The language in which to retrieve movie details, specified using an
            ISO 639-1 code (e.g., "en" for English, "fr" for French).
          schema:
            type: string
            default: en-US
      responses:
        '200':
          description: Details
          headers:
            Alt-Svc:
              schema:
                type: string
                example: h3=":443"; ma=86400
            Cache-Control:
              schema:
                type: string
                example: public, max-age=11584
            Connection:
              schema:
                type: string
                example: keep-alive
            Content-Encoding:
              schema:
                type: string
                example: gzip
            Date:
              schema:
                type: string
                example: Wed, 22 Jan 2025 09:18:33 GMT
            ETag:
              schema:
                type: string
                example: W/"9cd76dfe8e734dc705bb9bfea2bd11e1"
            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 29a90787d8a9611938ee5f68e42b9f66.cloudfront.net
                  (CloudFront)
            X-Amz-Cf-Id:
              schema:
                type: string
                example: '-cURj0CwqnPB3IzK_zZEgEd6RnFqEdpU80UriCWfcSzgC2RY1UpJ9g=='
            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: '15904'
            x-memc-expires:
              schema:
                type: string
                example: '11584'
            x-memc-key:
              schema:
                type: string
                example: 912143e186895c0932c5e7348a56218c
          content:
            application/json:
              schema:
                type: object
                properties:
                  backdrop_path:
                    type: string
                    example: /zJU3dyafiEPdH29h7NKJGj7u7cu.jpg
                  id:
                    type: number
                    example: 456
                  name:
                    type: string
                    example: Sissi Collection
                  overview:
                    type: string
                    example: >-
                      Sissi is a trilogy of 1950 films starring Romy Schneider
                      and Karlheinz Böhm and is part of the classic
                      German-Austrian film history and some of the most
                      successful German language films in box-office history.
                  parts:
                    type: array
                    items:
                      type: object
                      properties:
                        adult:
                          type: boolean
                          example: false
                        backdrop_path:
                          type: string
                          example: /rKs8y5WlXcYX5GCbDkXcXybGteZ.jpg
                        genre_ids:
                          type: array
                          items:
                            type: number
                            example: 35
                          example:
                            - 35
                            - 18
                            - 10749
                        id:
                          type: number
                          example: 457
                        media_type:
                          type: string
                          example: movie
                        original_language:
                          type: string
                          example: de
                        original_title:
                          type: string
                          example: Sissi
                        overview:
                          type: string
                          example: >-
                            The young Bavarian princess Elisabeth, who all call
                            Sissi, goes with her mother and older sister Néné to
                            Austria where Néné will be wed to an emperor named
                            Franz Joseph, Yet unexpectedly Franz runs into Sissi
                            while out fishing and they fall in love.
                        popularity:
                          type: number
                          example: 22.843
                        poster_path:
                          type: string
                          example: /iGy9j4AdhkiOYRYeTSpq7g3zayL.jpg
                        release_date:
                          type: string
                          example: '1955-12-22'
                        title:
                          type: string
                          example: Sissi
                        video:
                          type: boolean
                          example: false
                        vote_average:
                          type: number
                          example: 7.4
                        vote_count:
                          type: number
                          example: 473
                    example:
                      - adult: false
                        backdrop_path: /rKs8y5WlXcYX5GCbDkXcXybGteZ.jpg
                        genre_ids:
                          - 35
                          - 18
                          - 10749
                        id: 457
                        media_type: movie
                        original_language: de
                        original_title: Sissi
                        overview: >-
                          The young Bavarian princess Elisabeth, who all call
                          Sissi, goes with her mother and older sister Néné to
                          Austria where Néné will be wed to an emperor named
                          Franz Joseph, Yet unexpectedly Franz runs into Sissi
                          while out fishing and they fall in love.
                        popularity: 22.843
                        poster_path: /iGy9j4AdhkiOYRYeTSpq7g3zayL.jpg
                        release_date: '1955-12-22'
                        title: Sissi
                        video: false
                        vote_average: 7.4
                        vote_count: 473
                      - adult: false
                        backdrop_path: /xvcqme7lPw7nXNIQU71z11bbWRd.jpg
                        genre_ids:
                          - 18
                          - 35
                          - 10749
                        id: 458
                        media_type: movie
                        original_language: de
                        original_title: Sissi - Die junge Kaiserin
                        overview: >-
                          Sissi is now the empress of Austria and attempts to
                          learn etiquette. While she is busy being empress she
                          also has to deal with her difficult new mother-in-law,
                          while the arch-duchess Sophie is trying to tell the
                          emperor how to rule and also Sissi how to be a mother.
                        popularity: 20.771
                        poster_path: /rKEm4jFjRAwfWvbUicj4zKzmlW3.jpg
                        release_date: '1956-12-01'
                        title: 'Sissi: The Young Empress'
                        video: false
                        vote_average: 7.2
                        vote_count: 341
                      - adult: false
                        backdrop_path: /5WuvIg4f2AdFPLUADFjxexVAb2H.jpg
                        genre_ids:
                          - 10749
                          - 18
                          - 36
                        id: 459
                        media_type: movie
                        original_language: de
                        original_title: Sissi - Schicksalsjahre einer Kaiserin
                        overview: >-
                          After a wonderful time in Hungary Sissi falls
                          extremely ill and must retreat to a Mediterranean
                          climate to rest. The young empress’ mother takes her
                          from Austria to recover in Madeira.
                        popularity: 13.435
                        poster_path: /6LQaN8KGQcakpRHkGac2FqWfLxQ.jpg
                        release_date: '1957-12-18'
                        title: 'Sissi: The Fateful Years of an Empress'
                        video: false
                        vote_average: 7.2
                        vote_count: 331
                  poster_path:
                    type: string
                    example: /rTMRGUPwmhiBXsF38hwYhc1sInK.jpg
              examples:
                Details:
                  value:
                    backdrop_path: /zJU3dyafiEPdH29h7NKJGj7u7cu.jpg
                    id: 456
                    name: Sissi Collection
                    overview: >-
                      Sissi is a trilogy of 1950 films starring Romy Schneider
                      and Karlheinz Böhm and is part of the classic
                      German-Austrian film history and some of the most
                      successful German language films in box-office history.
                    parts:
                      - adult: false
                        backdrop_path: /rKs8y5WlXcYX5GCbDkXcXybGteZ.jpg
                        genre_ids:
                          - 35
                          - 18
                          - 10749
                        id: 457
                        media_type: movie
                        original_language: de
                        original_title: Sissi
                        overview: >-
                          The young Bavarian princess Elisabeth, who all call
                          Sissi, goes with her mother and older sister Néné to
                          Austria where Néné will be wed to an emperor named
                          Franz Joseph, Yet unexpectedly Franz runs into Sissi
                          while out fishing and they fall in love.
                        popularity: 22.843
                        poster_path: /iGy9j4AdhkiOYRYeTSpq7g3zayL.jpg
                        release_date: '1955-12-22'
                        title: Sissi
                        video: false
                        vote_average: 7.4
                        vote_count: 473
                      - adult: false
                        backdrop_path: /xvcqme7lPw7nXNIQU71z11bbWRd.jpg
                        genre_ids:
                          - 18
                          - 35
                          - 10749
                        id: 458
                        media_type: movie
                        original_language: de
                        original_title: Sissi - Die junge Kaiserin
                        overview: >-
                          Sissi is now the empress of Austria and attempts to
                          learn etiquette. While she is busy being empress she
                          also has to deal with her difficult new mother-in-law,
                          while the arch-duchess Sophie is trying to tell the
                          emperor how to rule and also Sissi how to be a mother.
                        popularity: 20.771
                        poster_path: /rKEm4jFjRAwfWvbUicj4zKzmlW3.jpg
                        release_date: '1956-12-01'
                        title: 'Sissi: The Young Empress'
                        video: false
                        vote_average: 7.2
                        vote_count: 341
                      - adult: false
                        backdrop_path: /5WuvIg4f2AdFPLUADFjxexVAb2H.jpg
                        genre_ids:
                          - 10749
                          - 18
                          - 36
                        id: 459
                        media_type: movie
                        original_language: de
                        original_title: Sissi - Schicksalsjahre einer Kaiserin
                        overview: >-
                          After a wonderful time in Hungary Sissi falls
                          extremely ill and must retreat to a Mediterranean
                          climate to rest. The young empress’ mother takes her
                          from Austria to recover in Madeira.
                        popularity: 13.435
                        poster_path: /6LQaN8KGQcakpRHkGac2FqWfLxQ.jpg
                        release_date: '1957-12-18'
                        title: 'Sissi: The Fateful Years of an Empress'
                        video: false
                        vote_average: 7.2
                        vote_count: 331
                    poster_path: /rTMRGUPwmhiBXsF38hwYhc1sInK.jpg
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````