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



## OpenAPI

````yaml api-reference/openapi3.json get /3/tv/{series_id}/season/{season_number}/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}/season/{season_number}/external_ids:
    get:
      tags:
        - TV SEASONS
      summary: External IDs
      description: >-
        This endpoint get a list of external IDs that have been added to a TV
        season.
      operationId: externalIds3
      parameters:
        - $ref: '#/components/parameters/season_number'
        - $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=5203
            Connection:
              schema:
                type: string
                example: keep-alive
            Content-Encoding:
              schema:
                type: string
                example: gzip
            Date:
              schema:
                type: string
                example: Sun, 05 Jan 2025 23:53:03 GMT
            ETag:
              schema:
                type: string
                example: W/"a58ab76ecd44295fd55e0b9f82713b22"
            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 a1157b69a14bebe8162237750a074fae.cloudfront.net
                  (CloudFront)
            X-Amz-Cf-Id:
              schema:
                type: string
                example: 1oFGpMUXzSRSYo0G_S1khv1FqEYnySWToJckdZiYq94YtMwxLZAb2g==
            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: '17070'
            x-memc-expires:
              schema:
                type: string
                example: '5203'
            x-memc-key:
              schema:
                type: string
                example: 090053f7bce3ab14df9c898838eb5c23
          content:
            application/json:
              schema:
                type: object
                properties:
                  freebase_id:
                    type: string
                    example: /en/breaking_bad_season_1
                  freebase_mid:
                    type: string
                    example: /m/05yy27m
                  id:
                    type: number
                    example: 3572
                  tvdb_id:
                    type: number
                    example: 30272
                  tvrage_id:
                    nullable: true
                    example: null
                  wikidata_id:
                    type: string
                    example: Q1582890
              examples:
                external ids:
                  value:
                    freebase_id: /en/breaking_bad_season_1
                    freebase_mid: /m/05yy27m
                    id: 3572
                    tvdb_id: 30272
                    tvrage_id: null
                    wikidata_id: Q1582890
components:
  parameters:
    season_number:
      name: season_number
      in: path
      required: true
      description: >-
        This refers to the numerical identifier assigned to a specific season of
        a TV series.
      schema:
        type: integer
        example: ''
    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

````