> ## 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 user's list of favorite movies.



## OpenAPI

````yaml get /3/account/{account_id}/favorite/movies
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/account/{account_id}/favorite/movies:
    parameters:
      - name: account_id
        in: path
        required: true
        schema:
          type: integer
    get:
      tags:
        - ACCOUNT
      summary: Favorite Movies
      description: This endpoint get user's list of favorite movies.
      operationId: favoriteMovies
      parameters:
        - name: language
          in: query
          schema:
            type: string
            default: en-US
          description: language based on region
        - name: page
          in: query
          schema:
            type: integer
            default: 1
          description: page number to retrieve specific paginated results.
        - name: session_id
          in: query
          schema:
            type: string
            example: ''
          description: session ID for authentication or tracking purposes
        - name: sort_by
          in: query
          schema:
            type: string
            description: 'Sort the results either in ascending order or descending order '
            enum:
              - created_at.asc
              - created_at.desc
      responses:
        '200':
          description: Favorite Movies
          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: 97.965
                        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: 29556
                    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: 97.965
                        poster_path: /pB8BM7pdSp6B6Ih7QZ4DrQ3PmJK.jpg
                        release_date: '1999-10-15'
                        title: Fight Club
                        video: false
                        vote_average: 8.438
                        vote_count: 29556
                  total_pages:
                    type: number
                    example: 1
                  total_results:
                    type: number
                    example: 1
              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: 97.965
                        poster_path: /pB8BM7pdSp6B6Ih7QZ4DrQ3PmJK.jpg
                        release_date: '1999-10-15'
                        title: Fight Club
                        video: false
                        vote_average: 8.438
                        vote_count: 29556
                    total_pages: 1
                    total_results: 1
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````