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

# Check item Status

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



## OpenAPI

````yaml get /3/list/{list_id}/item_status
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/list/{list_id}/item_status:
    parameters:
      - name: list_id
        in: path
        required: true
        schema:
          type: integer
          example: 8504086
    get:
      tags:
        - LISTS
      summary: Check item Status
      description: This endpoint check if an item has already been added to the list.
      operationId: checkItemStatus
      parameters:
        - name: langauge
          in: query
          schema:
            type: string
            default: en-US
        - name: movie_id
          in: query
          schema:
            type: integer
            example: 15
      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: Mon, 30 Dec 2024 08:51:58 GMT
            ETag:
              schema:
                type: string
                example: W/"addb972006285a5a68984706cdb85ba4"
            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 450b03d6f80e8a9a65630e947501047e.cloudfront.net
                  (CloudFront)
            X-Amz-Cf-Id:
              schema:
                type: string
                example: LlqzR8NqyehRXRmnEWPj5Ds_VuSZiKcqunA6Vn7QHTafK2G-1Q0yEQ==
            X-Amz-Cf-Pop:
              schema:
                type: string
                example: LOS50-P2
            X-Cache:
              schema:
                type: string
                example: Miss from cloudfront
          content:
            application/json:
              schema:
                type: object
                properties:
                  id:
                    type: string
                    example: '8504076'
                  item_present:
                    type: boolean
                    example: true
              examples:
                Check item Status:
                  value:
                    id: '8504076'
                    item_present: true
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````