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

# Alternative names

> This endpoint get the alternative names of a specifc network.



## OpenAPI

````yaml get /3/network/{network_id}/alternative_names
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}/alternative_names:
    parameters:
      - name: network_id
        in: path
        required: true
        schema:
          type: integer
          example: 12
    get:
      tags:
        - NETWORK
      summary: Alternative names
      description: This endpoint get the alternative names of a specifc network.
      operationId: alternativeNames1
      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=14193
            Connection:
              schema:
                type: string
                example: keep-alive
            Content-Encoding:
              schema:
                type: string
                example: gzip
            Date:
              schema:
                type: string
                example: Tue, 31 Dec 2024 10:22:27 GMT
            ETag:
              schema:
                type: string
                example: W/"4de6bfaaf6802d10197efd71163f63b2"
            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 f6eede9416393de137afc2f11d733fec.cloudfront.net
                  (CloudFront)
            X-Amz-Cf-Id:
              schema:
                type: string
                example: yjcS3JhpJBv8bfLs2rqqsWEwMD1iARgShBlxUNJu5YIirLjH2attqQ==
            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: '7929'
            x-memc-expires:
              schema:
                type: string
                example: '14193'
            x-memc-key:
              schema:
                type: string
                example: 0807d2ca0c6cd765d57ecc88ff37d9ce
          content:
            application/json:
              schema:
                type: object
                properties:
                  id:
                    type: number
                    example: 12
                  results:
                    type: array
                    items:
                      type: object
                      properties:
                        name:
                          type: string
                          example: Hokkaido Television Broadcasting
                        type:
                          type: string
                          example: ''
                    example:
                      - name: Hokkaido Television Broadcasting
                        type: ''
                      - name: HTB-6
                        type: ''
                      - name: 北海道テレビ放送
                        type: ''
                      - name: HTB北海道テレビ
                        type: ''
                      - name: NUMAnimation
                        type: programming block
              examples:
                Alternative names:
                  value:
                    id: 12
                    results:
                      - name: Hokkaido Television Broadcasting
                        type: ''
                      - name: HTB-6
                        type: ''
                      - name: 北海道テレビ放送
                        type: ''
                      - name: HTB北海道テレビ
                        type: ''
                      - name: NUMAnimation
                        type: programming block
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````