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

# Rated Movie

> This endpoint get list of user's rated movies



## OpenAPI

````yaml get /3/account/{account_id}/rated/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}/rated/movies:
    parameters:
      - name: account_id
        in: path
        required: true
        schema:
          type: integer
        description: 'unique identifier of an account '
    get:
      tags:
        - ACCOUNT
      summary: Rated Movie
      description: This endpoint get list of user's rated movies
      operationId: ratedMovie
      parameters:
        - 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
          description: session ID for authentication or tracking purposes
        - name: language
          in: query
          schema:
            type: string
            default: en-US
          description: language based on region
        - name: sort_by
          in: query
          description: Sort the results either in ascending order or descending order
          schema:
            type: string
            enum:
              - created_at.asc
              - created_at.desc
      responses:
        '200':
          description: Rated Movie
          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: Fri, 03 Jan 2025 19:53:27 GMT
            ETag:
              schema:
                type: string
                example: W/"d9497790cc00ed706f7aa98b532de0a8"
            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 a95a47d0ae281d5cb9d53eb5abd9a948.cloudfront.net
                  (CloudFront)
            X-Amz-Cf-Id:
              schema:
                type: string
                example: MRmVIXLyZHSU0MUmV8J-hSc2uQSoilMmLjadW7yQaUCma8MlH5Z4Tg==
            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: 25521139aed8b82ce931024794d6de4d
          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: /dWkdmxIkH9y23s9v1PjQFhTGIwo.jpg
                        genre_ids:
                          type: array
                          items:
                            type: number
                            example: 28
                          example:
                            - 28
                            - 18
                            - 53
                            - 10752
                        id:
                          type: number
                          example: 1043905
                        original_language:
                          type: string
                          example: en
                        original_title:
                          type: string
                          example: Dirty Angels
                        overview:
                          type: string
                          example: >-
                            During the United States' 2021 withdrawal from
                            Afghanistan, a group of female soldiers posing as
                            medical relief are sent back in to rescue a group of
                            kidnapped teenagers caught between ISIS and the
                            Taliban.
                        popularity:
                          type: number
                          example: 570.378
                        poster_path:
                          type: string
                          example: /3O3qSGmjRGc10hMwFul8WDxKE5t.jpg
                        rating:
                          type: number
                          example: 9
                        release_date:
                          type: string
                          example: '2024-12-11'
                        title:
                          type: string
                          example: Dirty Angels
                        video:
                          type: boolean
                          example: false
                        vote_average:
                          type: number
                          example: 6.4
                        vote_count:
                          type: number
                          example: 158
                    example:
                      - adult: false
                        backdrop_path: /dWkdmxIkH9y23s9v1PjQFhTGIwo.jpg
                        genre_ids:
                          - 28
                          - 18
                          - 53
                          - 10752
                        id: 1043905
                        original_language: en
                        original_title: Dirty Angels
                        overview: >-
                          During the United States' 2021 withdrawal from
                          Afghanistan, a group of female soldiers posing as
                          medical relief are sent back in to rescue a group of
                          kidnapped teenagers caught between ISIS and the
                          Taliban.
                        popularity: 570.378
                        poster_path: /3O3qSGmjRGc10hMwFul8WDxKE5t.jpg
                        rating: 9
                        release_date: '2024-12-11'
                        title: Dirty Angels
                        video: false
                        vote_average: 6.4
                        vote_count: 158
                      - adult: false
                        backdrop_path: /eCynaAOgYYiw5yN5lBwz3IxqvaW.jpg
                        genre_ids:
                          - 16
                          - 10751
                        id: 12
                        original_language: en
                        original_title: Finding Nemo
                        overview: >-
                          Nemo, an adventurous young clownfish, is unexpectedly
                          taken from his Great Barrier Reef home to a dentist's
                          office aquarium. It's up to his worrisome father
                          Marlin and a friendly but forgetful fish Dory to bring
                          Nemo home -- meeting vegetarian sharks, surfer dude
                          turtles, hypnotic jellyfish, hungry seagulls, and more
                          along the way.
                        popularity: 105.743
                        poster_path: /eHuGQ10FUzK1mdOY69wF5pGgEf5.jpg
                        rating: 8.5
                        release_date: '2003-05-30'
                        title: Finding Nemo
                        video: false
                        vote_average: 7.819
                        vote_count: 19375
                  total_pages:
                    type: number
                    example: 1
                  total_results:
                    type: number
                    example: 2
              examples:
                Rated Movie:
                  value:
                    page: 1
                    results:
                      - adult: false
                        backdrop_path: /dWkdmxIkH9y23s9v1PjQFhTGIwo.jpg
                        genre_ids:
                          - 28
                          - 18
                          - 53
                          - 10752
                        id: 1043905
                        original_language: en
                        original_title: Dirty Angels
                        overview: >-
                          During the United States' 2021 withdrawal from
                          Afghanistan, a group of female soldiers posing as
                          medical relief are sent back in to rescue a group of
                          kidnapped teenagers caught between ISIS and the
                          Taliban.
                        popularity: 570.378
                        poster_path: /3O3qSGmjRGc10hMwFul8WDxKE5t.jpg
                        rating: 9
                        release_date: '2024-12-11'
                        title: Dirty Angels
                        video: false
                        vote_average: 6.4
                        vote_count: 158
                      - adult: false
                        backdrop_path: /eCynaAOgYYiw5yN5lBwz3IxqvaW.jpg
                        genre_ids:
                          - 16
                          - 10751
                        id: 12
                        original_language: en
                        original_title: Finding Nemo
                        overview: >-
                          Nemo, an adventurous young clownfish, is unexpectedly
                          taken from his Great Barrier Reef home to a dentist's
                          office aquarium. It's up to his worrisome father
                          Marlin and a friendly but forgetful fish Dory to bring
                          Nemo home -- meeting vegetarian sharks, surfer dude
                          turtles, hypnotic jellyfish, hungry seagulls, and more
                          along the way.
                        popularity: 105.743
                        poster_path: /eHuGQ10FUzK1mdOY69wF5pGgEf5.jpg
                        rating: 8.5
                        release_date: '2003-05-30'
                        title: Finding Nemo
                        video: false
                        vote_average: 7.819
                        vote_count: 19375
                    total_pages: 1
                    total_results: 2
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````