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

# Details

> This endpoint allows you to access detailed data about a specific network identified by its unique ```network_id```.



## OpenAPI

````yaml api-reference/openapi3.json get /3/network/{network_id}
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/network/{network_id}:
    get:
      tags:
        - NETWORKS
      summary: Details
      description: >-
        This endpoint allows you to access detailed data about a specific
        network identified by its unique ```network_id```.
      operationId: details8
      parameters:
        - $ref: '#/components/parameters/network_id'
      responses:
        '200':
          description: details
          headers:
            Alt-Svc:
              schema:
                type: string
                example: h3=":443"; ma=86400
            Cache-Control:
              schema:
                type: string
                example: public, max-age=7373
            Connection:
              schema:
                type: string
                example: keep-alive
            Content-Encoding:
              schema:
                type: string
                example: gzip
            Date:
              schema:
                type: string
                example: Sun, 05 Jan 2025 15:40:27 GMT
            ETag:
              schema:
                type: string
                example: W/"471732b16d9e19fe426c29edc0b613ce"
            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 c84ecfd128e1f4c41a53a2b42410f3b8.cloudfront.net
                  (CloudFront)
            X-Amz-Cf-Id:
              schema:
                type: string
                example: uyUrUrIcdDMEOw2NDMeW_X1Mk-Py9mdU1byHTVkuUfMsWITaHUWMXw==
            X-Amz-Cf-Pop:
              schema:
                type: string
                example: IAD89-C3
            X-Cache:
              schema:
                type: string
                example: Miss from cloudfront
            x-memc:
              schema:
                type: string
                example: HIT
            x-memc-age:
              schema:
                type: string
                example: '16585'
            x-memc-expires:
              schema:
                type: string
                example: '7373'
            x-memc-key:
              schema:
                type: string
                example: d95518b23e652da208a78104753e8174
          content:
            application/json:
              schema:
                type: object
                properties:
                  headquarters:
                    type: string
                    example: Singapore
                  homepage:
                    type: string
                    example: http://animax-asia.com/
                  id:
                    type: number
                    example: 3268
                  logo_path:
                    type: string
                    example: /gNsvkmJY7QzRQ7AZ0QK9PeONIm2.png
                  name:
                    type: string
                    example: Animax Asia
                  origin_country:
                    type: string
                    example: TW
              examples:
                details:
                  value:
                    headquarters: Singapore
                    homepage: http://animax-asia.com/
                    id: 3268
                    logo_path: /gNsvkmJY7QzRQ7AZ0QK9PeONIm2.png
                    name: Animax Asia
                    origin_country: TW
components:
  parameters:
    network_id:
      name: network_id
      in: path
      required: true
      description: >-
        A unique integer identifier assigned to a specific network in the
        database.
      schema:
        type: string
        example: ''
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````