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

# Favorite Movies

> This endpoint get a user's list of favorite movies



## OpenAPI

````yaml get /4/account/{account_object_id}/movie/favorites
openapi: 3.0.3
info:
  title: Version 4
  description: This API is the version 4 of TMDB API
  version: 1.0.0
  contact: {}
servers:
  - url: https://api.themoviedb.org
security:
  - bearerAuth: []
tags:
  - name: ACCOUNT
  - name: AUTH
  - name: LISTS
    description: For this folder, you will need to create an access token
paths:
  /4/account/{account_object_id}/movie/favorites:
    parameters:
      - name: account_object_id
        in: path
        required: true
        schema:
          type: string
    get:
      tags:
        - ACCOUNT
      summary: Favorite Movies
      description: This endpoint get a user's list of favorite movies
      operationId: favoriteMovies
      parameters:
        - name: page
          description: the page number
          in: query
          schema:
            type: integer
            default: 1
        - name: language
          description: The ISO 639-1 code for the language
          in: query
          schema:
            type: string
            default: en-US
        - name: sort_by
          in: query
          schema:
            type: string
            enum:
              - created_at.asc
              - created_at.desc
      responses:
        '200':
          description: Favorite Movies
          headers:
            Alt-Svc:
              schema:
                type: string
                example: h3=":443"; ma=86400
            Cache-Control:
              schema:
                type: string
                example: public, max-age=0
            Connection:
              schema:
                type: string
                example: keep-alive
            Content-Encoding:
              schema:
                type: string
                example: gzip
            Date:
              schema:
                type: string
                example: Mon, 03 Mar 2025 08:50:47 GMT
            ETag:
              schema:
                type: string
                example: W/"7d5fefccef81c61a2000a8dadd9ff649"
            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 882971ebff26c2a3bfb086f9b480f172.cloudfront.net
                  (CloudFront)
            X-Amz-Cf-Id:
              schema:
                type: string
                example: fqAZhXJx5OeKVTjsFt_dActkDb_FwZ35UVaD26J85QXAJ2JkuaVGYQ==
            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: MISS
            x-memc-age:
              schema:
                type: string
                example: '0'
            x-memc-expires:
              schema:
                type: string
                example: '0'
            x-memc-key:
              schema:
                type: string
                example: 7e435613152a0e6e946bcca4b0e1e280
          content:
            application/json:
              schema:
                type: object
                properties:
                  page:
                    type: number
                    example: 1
                  results:
                    type: array
                    items:
                      type: object
                      properties:
                        adult:
                          type: boolean
                          example: false
                        backdrop_path:
                          type: string
                          example: /hZkgoQYus5vegHoetLkCJzb17zJ.jpg
                        genre_ids:
                          type: array
                          items:
                            type: number
                            example: 18
                          example:
                            - 18
                        id:
                          type: number
                          example: 550
                        original_language:
                          type: string
                          example: en
                        original_title:
                          type: string
                          example: Fight Club
                        overview:
                          type: string
                          example: >-
                            A ticking-time-bomb insomniac and a slippery soap
                            salesman channel primal male aggression into a
                            shocking new form of therapy. Their concept catches
                            on, with underground "fight clubs" forming in every
                            town, until an eccentric gets in the way and ignites
                            an out-of-control spiral toward oblivion.
                        popularity:
                          type: number
                          example: 129.668
                        poster_path:
                          type: string
                          example: /pB8BM7pdSp6B6Ih7QZ4DrQ3PmJK.jpg
                        release_date:
                          type: string
                          example: '1999-10-15'
                        title:
                          type: string
                          example: Fight Club
                        video:
                          type: boolean
                          example: false
                        vote_average:
                          type: number
                          example: 8.438
                        vote_count:
                          type: number
                          example: 29909
                    example:
                      - adult: false
                        backdrop_path: /hZkgoQYus5vegHoetLkCJzb17zJ.jpg
                        genre_ids:
                          - 18
                        id: 550
                        original_language: en
                        original_title: Fight Club
                        overview: >-
                          A ticking-time-bomb insomniac and a slippery soap
                          salesman channel primal male aggression into a
                          shocking new form of therapy. Their concept catches
                          on, with underground "fight clubs" forming in every
                          town, until an eccentric gets in the way and ignites
                          an out-of-control spiral toward oblivion.
                        popularity: 129.668
                        poster_path: /pB8BM7pdSp6B6Ih7QZ4DrQ3PmJK.jpg
                        release_date: '1999-10-15'
                        title: Fight Club
                        video: false
                        vote_average: 8.438
                        vote_count: 29909
                      - adult: false
                        backdrop_path: /xZm5YUNY3PlYD1Q4k7X8zd2V4AK.jpg
                        genre_ids:
                          - 28
                          - 35
                        id: 993710
                        original_language: en
                        original_title: Back in Action
                        overview: >-
                          Fifteen years after vanishing from the CIA to start a
                          family, elite spies Matt and Emily jump back into the
                          world of espionage when their cover is blown.
                        popularity: 568.089
                        poster_path: /3L3l6LsiLGHkTG4RFB2aBA6BttB.jpg
                        release_date: '2025-01-15'
                        title: Back in Action
                        video: false
                        vote_average: 6.486
                        vote_count: 1053
                  total_pages:
                    type: number
                    example: 1
                  total_results:
                    type: number
                    example: 2
              examples:
                Favorite Movies:
                  value:
                    page: 1
                    results:
                      - adult: false
                        backdrop_path: /hZkgoQYus5vegHoetLkCJzb17zJ.jpg
                        genre_ids:
                          - 18
                        id: 550
                        original_language: en
                        original_title: Fight Club
                        overview: >-
                          A ticking-time-bomb insomniac and a slippery soap
                          salesman channel primal male aggression into a
                          shocking new form of therapy. Their concept catches
                          on, with underground "fight clubs" forming in every
                          town, until an eccentric gets in the way and ignites
                          an out-of-control spiral toward oblivion.
                        popularity: 129.668
                        poster_path: /pB8BM7pdSp6B6Ih7QZ4DrQ3PmJK.jpg
                        release_date: '1999-10-15'
                        title: Fight Club
                        video: false
                        vote_average: 8.438
                        vote_count: 29909
                      - adult: false
                        backdrop_path: /xZm5YUNY3PlYD1Q4k7X8zd2V4AK.jpg
                        genre_ids:
                          - 28
                          - 35
                        id: 993710
                        original_language: en
                        original_title: Back in Action
                        overview: >-
                          Fifteen years after vanishing from the CIA to start a
                          family, elite spies Matt and Emily jump back into the
                          world of espionage when their cover is blown.
                        popularity: 568.089
                        poster_path: /3L3l6LsiLGHkTG4RFB2aBA6BttB.jpg
                        release_date: '2025-01-15'
                        title: Back in Action
                        video: false
                        vote_average: 6.486
                        vote_count: 1053
                    total_pages: 1
                    total_results: 2
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````