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

# Check Item Status

> This endpoint check if an item has already been added to the list.



## OpenAPI

````yaml api-reference/openapi3.json get /3/list/{list_id}/item_status
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}/item_status:
    get:
      tags:
        - LISTS
      summary: Check Item Status
      description: This endpoint check if an item has already been added to the list.
      operationId: checkItemStatus
      parameters:
        - $ref: '#/components/parameters/language'
        - $ref: '#/components/parameters/list_id'
        - name: movie_id
          in: query
          description: This is the unique identifier of a movie.
          schema:
            type: string
      responses:
        '200':
          description: check item status
          headers:
            Alt-Svc:
              schema:
                type: string
                example: h3=":443"; ma=86400
            Cache-Control:
              schema:
                type: string
                example: max-age=0, private, must-revalidate
            Connection:
              schema:
                type: string
                example: keep-alive
            Content-Encoding:
              schema:
                type: string
                example: gzip
            Date:
              schema:
                type: string
                example: Fri, 03 Jan 2025 21:28:09 GMT
            ETag:
              schema:
                type: string
                example: W/"fca9158d787a55d7cac08b955a8eb69d"
            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 3dcb635971b5d310e8941cdb963aff70.cloudfront.net
                  (CloudFront)
            X-Amz-Cf-Id:
              schema:
                type: string
                example: QtBuiipvcnwQs23h7cBlgrUVksEv7zYr_CWLtZaGtLsWsFNoB52Ftw==
            X-Amz-Cf-Pop:
              schema:
                type: string
                example: IAD89-C3
            X-Cache:
              schema:
                type: string
                example: Miss from cloudfront
          content:
            application/json:
              schema:
                type: object
                properties:
                  id:
                    type: string
                    example: '8504997'
                    description: This is the list_id
                  item_present:
                    type: boolean
                    example: false
                    description: This shows if any movie or tv shows is in the list.
              examples:
                check item status:
                  value:
                    id: '8504997'
                    item_present: false
components:
  parameters:
    language:
      name: language
      in: query
      description: Specifies the language in which the response should be returned.
      schema:
        type: string
        example: en-US
    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

````