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

# Delete

> This endpoint delete a list.



## OpenAPI

````yaml delete /4/list/{list_id}
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}:
    parameters:
      - name: list_id
        in: path
        required: true
        schema:
          type: integer
          example: 8510518
    delete:
      tags:
        - LISTS
      summary: Delete
      description: This endpoint delete a list.
      operationId: delete
      responses:
        '200':
          description: Delete
          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: Mon, 03 Mar 2025 09:55:34 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 79a8bda299f9389df1f030913c73199e.cloudfront.net
                  (CloudFront)
            X-Amz-Cf-Id:
              schema:
                type: string
                example: CjnGJJ6heMUAj8Meha12rqJGvEH9Uw8KUtYrNjlkv9J4et7dCwn0LQ==
            X-Amz-Cf-Pop:
              schema:
                type: string
                example: LOS50-P2
            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
                  status_message:
                    type: string
                    example: The item/record was deleted successfully.
                  success:
                    type: boolean
                    example: true
              examples:
                Delete:
                  value:
                    status_code: 13
                    status_message: The item/record was deleted successfully.
                    success: true
      security:
        - bearerAuth: []
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````