> ## Documentation Index
> Fetch the complete documentation index at: https://sirjosh.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Remove Movie

> This endpoint remove a movie from a list.



## OpenAPI

````yaml api-reference/openapi3.json post /3/list/{list_id}/remove_item
openapi: 3.0.3
info:
  title: The Movie Database
  version: 1.0.0
  contact: {}
servers:
  - url: https://api.themoviedb.org
security:
  - bearerAuth: []
tags:
  - name: AUTHENTICATION
  - name: ACCOUNT
  - name: CERTIFICATIONS
  - name: CHANGES
  - name: COLLECTIONS
  - name: COMPANY
  - name: CONFIGURATION
  - name: CREDIT
  - name: DISCOVER
  - name: FIND
  - name: GENRES
  - name: GUEST SESSIONS
  - name: KEYWORDS
  - name: LISTS
  - name: MOVIE LISTS
  - name: MOVIES
  - name: NETWORKS
  - name: PEOPLE LIST
  - name: PEOPLE
  - name: REVIEWS
  - name: SEARCH
  - name: TRENDING
  - name: TV SERIES LIST
  - name: TV SERIES
  - name: TV SEASONS
  - name: TV EPISODES
  - name: TV EPISODE GROUP
  - name: WATCH PROVIDERS
paths:
  /3/list/{list_id}/remove_item:
    post:
      tags:
        - LISTS
      summary: Remove Movie
      description: This endpoint remove a movie from a list.
      operationId: removeMovie
      parameters:
        - $ref: '#/components/parameters/session_id'
        - $ref: '#/components/parameters/list_id'
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                media_id:
                  type: number
                  example: 18
                  description: >-
                    This is the value that is intended to be removed from the
                    server.
            examples:
              Remove Movie:
                value:
                  media_id: 18
      responses:
        '200':
          description: remove movie
          headers:
            Alt-Svc:
              schema:
                type: string
                example: h3=":443"; ma=86400
            Connection:
              schema:
                type: string
                example: keep-alive
            Content-Encoding:
              schema:
                type: string
                example: br
            Date:
              schema:
                type: string
                example: Fri, 03 Jan 2025 21:38:22 GMT
            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 4db130e87be66fce9731567ae0669c56.cloudfront.net
                  (CloudFront)
            X-Amz-Cf-Id:
              schema:
                type: string
                example: sBoHxPc2Zq6SGChY9O5BMpCC_v_4WsIhkZoVeJFahgDI0S0HhX54aw==
            X-Amz-Cf-Pop:
              schema:
                type: string
                example: IAD89-C3
            X-Cache:
              schema:
                type: string
                example: Miss from cloudfront
            cache-control:
              schema:
                type: string
                example: public, max-age=0
            etag:
              schema:
                type: string
                example: W/"0566f98871ddfd7f6ade28aaefb5167d"
            vary:
              schema:
                type: string
                example: accept-encoding
          content:
            application/json:
              schema:
                type: object
                properties:
                  status_code:
                    type: number
                    example: 13
                    description: >-
                      An integer value representing the status of the response.
                      A value of 1 is often used to denote a generic success
                      response.
                  status_message:
                    type: string
                    example: The item/record was deleted successfully.
                    description: >-
                      A string providing a brief indication of the status of the
                      request.
                  success:
                    type: boolean
                    example: true
                    description: >-
                      A boolean value indicating whether the request was
                      successful.
              examples:
                remove movie:
                  value:
                    status_code: 13
                    status_message: The item/record was deleted successfully.
                    success: true
components:
  parameters:
    session_id:
      name: session_id
      in: query
      description: >-
        A token that represents a logged-in user's session after they have
        authenticated with their TMDB account.
      schema:
        type: string
        example: ''
    list_id:
      name: list_id
      in: query
      required: true
      description: This is the unique identifier of the list been created
      schema:
        type: number
        example: ''
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````