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

> This endpoint get the alternative titles of a TV show.



## OpenAPI

````yaml get /3/tv/{series_id}/alternative_titles
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/tv/{series_id}/alternative_titles:
    parameters:
      - $ref: '#/components/parameters/SeriesID'
    get:
      tags:
        - TV SERIES
      summary: Alternative Titles
      description: This endpoint get the alternative titles of a TV show.
      operationId: alternativeTitles
      responses:
        '200':
          description: Alternative Titles
          headers:
            Alt-Svc:
              schema:
                type: string
                example: h3=":443"; ma=86400
            Cache-Control:
              schema:
                type: string
                example: public, max-age=9396
            Connection:
              schema:
                type: string
                example: keep-alive
            Content-Encoding:
              schema:
                type: string
                example: gzip
            Date:
              schema:
                type: string
                example: Wed, 01 Jan 2025 18:38:38 GMT
            ETag:
              schema:
                type: string
                example: W/"8d91d5c82dfd41275ef701ca38dc11e6"
            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 dd11c9768f8b06d6759fe07ff69421ce.cloudfront.net
                  (CloudFront)
            X-Amz-Cf-Id:
              schema:
                type: string
                example: izNXnmiGxdh8oRtzbsr4UfMd3BUEvxlZALJXCjQrcCaQlWo6lTyhkw==
            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: '15263'
            x-memc-expires:
              schema:
                type: string
                example: '9396'
            x-memc-key:
              schema:
                type: string
                example: c1cb98ddc191b84db56de67b7769b057
          content:
            application/json:
              schema:
                type: object
                properties:
                  id:
                    type: number
                    example: 12
                  results:
                    type: array
                    items:
                      type: object
                      properties:
                        iso_3166_1:
                          type: string
                          example: CN
                        title:
                          type: string
                          example: Han Wu Da Di
                        type:
                          type: string
                          example: ''
                    example:
                      - iso_3166_1: CN
                        title: Han Wu Da Di
                        type: ''
              examples:
                Alternative Titles:
                  value:
                    id: 12
                    results:
                      - iso_3166_1: CN
                        title: Han Wu Da Di
                        type: ''
components:
  parameters:
    SeriesID:
      name: series_id
      description: a uniques identifier for a tv serie
      in: path
      required: true
      schema:
        type: integer
      examples:
        example1:
          value: 122
        example2:
          value: 123
        example3:
          value: 110381
        example4:
          value: 1433
        example5:
          value: 93405
        example6:
          value: 1399
        example7:
          value: 84007
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````