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

# Item status

> This endpoint get the status of a specific item in a list.



## OpenAPI

````yaml get /4/list/{list_id}/item_status
openapi: 3.0.3
info:
  title: Version 4
  description: This API is the version 4 of TMDB API
  version: 1.0.0
  contact: {}
servers:
  - url: https://api.themoviedb.org
security:
  - bearerAuth: []
tags:
  - name: ACCOUNT
  - name: AUTH
  - name: LISTS
    description: For this folder, you will need to create an access token
paths:
  /4/list/{list_id}/item_status:
    parameters:
      - name: list_id
        description: the ID of the custom list
        in: path
        required: true
        schema:
          type: integer
          example: 8510518
    get:
      tags:
        - LISTS
      summary: Item status
      description: This endpoint get the status of a specific item in a list.
      operationId: itemStatus
      parameters:
        - name: media_id
          required: true
          description: The ID of the media item
          in: query
          schema:
            type: integer
            example: 76203
        - name: media_type
          required: true
          in: query
          description: The type of media (e.g., movie)
          schema:
            type: string
            enum:
              - movie
              - tv
      responses:
        '200':
          description: Item status
          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: Mon, 03 Mar 2025 09:59:20 GMT
            ETag:
              schema:
                type: string
                example: W/"1e06ea5f3e2c915f61d551c087586e19"
            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 f4f3f118ac6f8aab6b0b8776a3481c6e.cloudfront.net
                  (CloudFront)
            X-Amz-Cf-Id:
              schema:
                type: string
                example: UtDlBW-zoni-BlKPF7KrK6g9UJQvTnlwXxevPNnyZKbYKfDj-Tpm6Q==
            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: number
                    example: 223
                  media_id:
                    type: number
                    example: 408
                  media_type:
                    type: string
                    example: movie
                  status_code:
                    type: number
                    example: 1
                  status_message:
                    type: string
                    example: Success.
                  success:
                    type: boolean
                    example: true
              examples:
                Item status:
                  value:
                    id: 223
                    media_id: 408
                    media_type: movie
                    status_code: 1
                    status_message: Success.
                    success: true
      security:
        - bearerAuth: []
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````