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

# External IDs

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



## OpenAPI

````yaml api-reference/openapi3.json get /3/tv/{series_id}/external_ids
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/tv/{series_id}/external_ids:
    get:
      tags:
        - TV SERIES
      summary: External IDs
      description: >-
        This endpoint get a list of external IDs that have been added to a TV
        show.
      operationId: externalIds2
      parameters:
        - $ref: '#/components/parameters/series_id'
      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=12325
            Connection:
              schema:
                type: string
                example: keep-alive
            Content-Encoding:
              schema:
                type: string
                example: gzip
            Date:
              schema:
                type: string
                example: Sun, 05 Jan 2025 22:13:20 GMT
            ETag:
              schema:
                type: string
                example: W/"acbf5e6e36cb1717ed94eeb458245ad6"
            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 76a7fdbced88b6eccf433c4e386bae40.cloudfront.net
                  (CloudFront)
            X-Amz-Cf-Id:
              schema:
                type: string
                example: kAJjfiiwJk49jUS1cSP8pDHy_iJ1-LBgGfjmhkyl6H39G2vRW47iXQ==
            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: '10759'
            x-memc-expires:
              schema:
                type: string
                example: '12325'
            x-memc-key:
              schema:
                type: string
                example: 119b3a9ffb82c6babbe78bfd9aa4b6e3
          content:
            application/json:
              schema:
                type: object
                properties:
                  facebook_id:
                    type: string
                    example: BreakingBad
                  freebase_id:
                    type: string
                    example: /en/breaking_bad
                  freebase_mid:
                    type: string
                    example: /m/03d34x8
                  id:
                    type: number
                    example: 1396
                  imdb_id:
                    type: string
                    example: tt0903747
                  instagram_id:
                    type: string
                    example: breakingbad
                  tvdb_id:
                    type: number
                    example: 81189
                  tvrage_id:
                    type: number
                    example: 18164
                  twitter_id:
                    type: string
                    example: BreakingBad
                  wikidata_id:
                    type: string
                    example: Q1079
              examples:
                external ids:
                  value:
                    facebook_id: BreakingBad
                    freebase_id: /en/breaking_bad
                    freebase_mid: /m/03d34x8
                    id: 1396
                    imdb_id: tt0903747
                    instagram_id: breakingbad
                    tvdb_id: 81189
                    tvrage_id: 18164
                    twitter_id: BreakingBad
                    wikidata_id: Q1079
components:
  parameters:
    series_id:
      name: series_id
      in: path
      required: true
      description: >-
        This refers to a unique identifier assigned to a television series
        within the database.
      schema:
        type: integer
        example: ''
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````