> ## 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 of a TV episode.



## OpenAPI

````yaml get /3/tv/{series_id}/season/{season_number}/episode/{episode_number}/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}/season/{season_number}/episode/{episode_number}/external_ids:
    parameters:
      - $ref: '#/components/parameters/SeriesID'
      - name: season_number
        in: path
        required: true
        schema:
          type: integer
          example: 1
      - name: episode_number
        in: path
        required: true
        schema:
          type: integer
          example: 2
    get:
      tags:
        - TV EPISODES
      summary: External IDs
      description: This endpoint get a list of external IDs of a TV episode.
      operationId: externalIds4
      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=23311
            Connection:
              schema:
                type: string
                example: keep-alive
            Content-Encoding:
              schema:
                type: string
                example: gzip
            Date:
              schema:
                type: string
                example: Thu, 02 Jan 2025 08:23:56 GMT
            ETag:
              schema:
                type: string
                example: W/"f4f23478b4fe2eecf5a01963cfe49803"
            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 3502b4da22916485af0d3edbb185fb9c.cloudfront.net
                  (CloudFront)
            X-Amz-Cf-Id:
              schema:
                type: string
                example: wEM2evb-I897WVV31K4Rdj4BqF2VKy20EUI3ZzyRAL_Z3eAEQlsQAw==
            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: '5365'
            x-memc-expires:
              schema:
                type: string
                example: '23311'
            x-memc-key:
              schema:
                type: string
                example: a95f91c4c77b24c24dfd65ae4b72a205
          content:
            application/json:
              schema:
                type: object
                properties:
                  freebase_id:
                    type: string
                    example: /en/threat_levels
                  freebase_mid:
                    type: string
                    example: /m/06p29p
                  id:
                    type: number
                    example: 65906
                  imdb_id:
                    type: string
                    example: tt0511646
                  tvdb_id:
                    type: number
                    example: 108300
                  tvrage_id:
                    type: number
                    example: 11810
                  wikidata_id:
                    type: string
                    example: Q3768760
              examples:
                External IDs:
                  value:
                    freebase_id: /en/threat_levels
                    freebase_mid: /m/06p29p
                    id: 65906
                    imdb_id: tt0511646
                    tvdb_id: 108300
                    tvrage_id: 11810
                    wikidata_id: Q3768760
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

````