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

# Alternative networks

> This endpoint get the alternative names of a network.



## OpenAPI

````yaml api-reference/openapi3.json get /3/network/{network_id}/alternative_names
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}/alternative_names:
    get:
      tags:
        - NETWORKS
      summary: Alternative networks
      description: This endpoint get the alternative names of a network.
      operationId: alternativeNetworks
      parameters:
        - $ref: '#/components/parameters/network_id'
      responses:
        '200':
          description: alternative names
          headers:
            Alt-Svc:
              schema:
                type: string
                example: h3=":443"; ma=86400
            Cache-Control:
              schema:
                type: string
                example: public, max-age=7771
            Connection:
              schema:
                type: string
                example: keep-alive
            Content-Encoding:
              schema:
                type: string
                example: gzip
            Date:
              schema:
                type: string
                example: Sun, 05 Jan 2025 15:42:02 GMT
            ETag:
              schema:
                type: string
                example: W/"7a468930001f83943b2f483e0498bf69"
            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 9c90b41a9e5ac2856624d29ed4da4234.cloudfront.net
                  (CloudFront)
            X-Amz-Cf-Id:
              schema:
                type: string
                example: jzx8VhxvWGMPqvqg9MgW5qGh2MnmSSW2BZy-6o23Q-LNfRH0iXqtrQ==
            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: '16680'
            x-memc-expires:
              schema:
                type: string
                example: '7771'
            x-memc-key:
              schema:
                type: string
                example: bde90b8ed9ed84ea4c5ce0650bb44561
          content:
            application/json:
              schema:
                type: object
                properties:
                  id:
                    type: number
                    example: 3268
                  results:
                    type: array
                    items:
                      type: object
                      properties:
                        name:
                          type: string
                          example: Animax
                        type:
                          type: string
                          example: ''
                    example:
                      - name: Animax
                        type: ''
              examples:
                alternative names:
                  value:
                    id: 3268
                    results:
                      - name: Animax
                        type: ''
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

````