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

# Details

> This endpoint get details of a specific list



## OpenAPI

````yaml get /3/list/{list_id}
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}:
    parameters:
      - name: list_id
        in: path
        required: true
        schema:
          type: integer
          example: 8504076
    get:
      tags:
        - LISTS
      summary: Details
      description: This endpoint get details of a specific list
      operationId: details6
      parameters:
        - name: list_id
          in: path
          required: true
          schema:
            type: integer
            example: 8504075
        - name: language
          in: query
          schema:
            type: string
            default: en-US
        - name: page
          in: query
          schema:
            type: integer
            default: 1
      responses:
        '200':
          description: Details
          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 09:09:09 GMT
            ETag:
              schema:
                type: string
                example: W/"e98675ea459e2d3ef2c2145d60740a51"
            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 8db1ee4e3ce665297e547b943a1b3122.cloudfront.net
                  (CloudFront)
            X-Amz-Cf-Id:
              schema:
                type: string
                example: oJY5ggB12S0HSUZdrDcaLnIymkIVteZleVHr-ekZo1TmDEvN0r7J_Q==
            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:
                  created_by:
                    type: string
                    example: Ileolami
                  description:
                    type: string
                    example: This is a story to test this API endpoint
                  favorite_count:
                    type: number
                    example: 0
                  id:
                    type: number
                    example: 8504086
                  iso_639_1:
                    type: string
                    example: en
                  item_count:
                    type: number
                    example: 0
                  items:
                    type: array
                    items: {}
                    example: []
                  name:
                    type: string
                    example: True Story Of Nnekka
                  page:
                    type: number
                    example: 1
                  poster_path:
                    nullable: true
                    example: null
                  total_pages:
                    type: number
                    example: 1
                  total_results:
                    type: number
                    example: 0
              examples:
                Details:
                  value:
                    created_by: Ileolami
                    description: This is a story to test this API endpoint
                    favorite_count: 0
                    id: 8504086
                    iso_639_1: en
                    item_count: 0
                    items: []
                    name: True Story Of Nnekka
                    page: 1
                    poster_path: null
                    total_pages: 1
                    total_results: 0
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````