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

# External IDs

> This endpoint get a list of external IDs added to a TV show.



## OpenAPI

````yaml get /3/tv/{series_id}/external_ids
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}/external_ids:
    parameters:
      - $ref: '#/components/parameters/SeriesID'
    get:
      tags:
        - TV SERIES
      summary: External IDs
      description: This endpoint get a list of external IDs added to a TV show.
      operationId: externalIds2
      responses:
        '200':
          description: External IDs
          headers:
            Alt-Svc:
              schema:
                type: string
                example: h3=":443"; ma=86400
            Cache-Control:
              schema:
                type: string
                example: public, max-age=8086
            Connection:
              schema:
                type: string
                example: keep-alive
            Content-Encoding:
              schema:
                type: string
                example: gzip
            Date:
              schema:
                type: string
                example: Wed, 01 Jan 2025 19:25:21 GMT
            ETag:
              schema:
                type: string
                example: W/"fa610b578c69c57034246592a2c4ecea"
            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 8db1ee4e3ce665297e547b943a1b3122.cloudfront.net
                  (CloudFront)
            X-Amz-Cf-Id:
              schema:
                type: string
                example: FUIzLkEx_ZXHhuaW7QAW54dJYHpihLxQV5610kivt1_Mi6HjeMorDw==
            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: '15115'
            x-memc-expires:
              schema:
                type: string
                example: '8086'
            x-memc-key:
              schema:
                type: string
                example: 554e1f8c08f1d0eec5610357fffad26c
          content:
            application/json:
              schema:
                type: object
                properties:
                  facebook_id:
                    type: string
                    example: AmericanDad
                  freebase_id:
                    type: string
                    example: /en/american_dad
                  freebase_mid:
                    type: string
                    example: /m/03nymk
                  id:
                    type: number
                    example: 1433
                  imdb_id:
                    type: string
                    example: tt0397306
                  instagram_id:
                    type: string
                    example: americandad
                  tvdb_id:
                    type: number
                    example: 73141
                  tvrage_id:
                    type: number
                    example: 2594
                  twitter_id:
                    type: string
                    example: AmericanDadTBS
                  wikidata_id:
                    type: string
                    example: Q210311
              examples:
                External IDs:
                  value:
                    facebook_id: AmericanDad
                    freebase_id: /en/american_dad
                    freebase_mid: /m/03nymk
                    id: 1433
                    imdb_id: tt0397306
                    instagram_id: americandad
                    tvdb_id: 73141
                    tvrage_id: 2594
                    twitter_id: AmericanDadTBS
                    wikidata_id: Q210311
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

````