> ## 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 for a specific network based on the provided network ID.



## OpenAPI

````yaml get /3/network/{network_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/network/{network_id}:
    parameters:
      - name: network_id
        in: path
        required: true
        schema:
          type: integer
          example: 12
    get:
      tags:
        - NETWORK
      summary: Details
      description: >-
        This endpoint get details for a specific network based on the provided
        network ID.
      operationId: details8
      responses:
        '200':
          description: Details
          headers:
            Alt-Svc:
              schema:
                type: string
                example: h3=":443"; ma=86400
            Cache-Control:
              schema:
                type: string
                example: public, max-age=14190
            Connection:
              schema:
                type: string
                example: keep-alive
            Content-Encoding:
              schema:
                type: string
                example: gzip
            Date:
              schema:
                type: string
                example: Tue, 31 Dec 2024 10:20:45 GMT
            ETag:
              schema:
                type: string
                example: W/"ad3b0c2aa0eb052c53a7a72c18efd827"
            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 882971ebff26c2a3bfb086f9b480f172.cloudfront.net
                  (CloudFront)
            X-Amz-Cf-Id:
              schema:
                type: string
                example: 40Ty8UxXRD9bd6mRneZbuihTvw0mlREv184HogCR7l_IESXqqjx2aA==
            X-Amz-Cf-Pop:
              schema:
                type: string
                example: LOS50-P2
            X-Cache:
              schema:
                type: string
                example: Miss from cloudfront
            x-memc:
              schema:
                type: string
                example: HIT
            x-memc-age:
              schema:
                type: string
                example: '7827'
            x-memc-expires:
              schema:
                type: string
                example: '14190'
            x-memc-key:
              schema:
                type: string
                example: c9caa0462ae7992c2e6d06cf57127032
          content:
            application/json:
              schema:
                type: object
                properties:
                  headquarters:
                    type: string
                    example: Sapporo, Hokkaido
                  homepage:
                    type: string
                    example: https://www.htb.co.jp
                  id:
                    type: number
                    example: 12
                  logo_path:
                    type: string
                    example: /eJSYeF1YIyQbZdTRNxuvVKaZOIK.png
                  name:
                    type: string
                    example: HTB
                  origin_country:
                    type: string
                    example: JP
              examples:
                Details:
                  value:
                    headquarters: Sapporo, Hokkaido
                    homepage: https://www.htb.co.jp
                    id: 12
                    logo_path: /eJSYeF1YIyQbZdTRNxuvVKaZOIK.png
                    name: HTB
                    origin_country: JP
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````