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

> The endpoint get the external IDs associated with a specific movie.



## OpenAPI

````yaml get /3/movie/{movie_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/movie/{movie_id}/external_ids:
    parameters:
      - name: movie_id
        in: path
        required: true
        schema:
          type: integer
          example: '845781'
    get:
      tags:
        - MOVIES
      summary: External IDs
      description: The endpoint get the external IDs associated with a specific movie.
      operationId: externalIds
      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=13109
            Connection:
              schema:
                type: string
                example: keep-alive
            Content-Encoding:
              schema:
                type: string
                example: gzip
            Date:
              schema:
                type: string
                example: Thu, 23 Jan 2025 09:58:30 GMT
            ETag:
              schema:
                type: string
                example: W/"4c0762373c99baf5ce9d7c6138901104"
            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 7df0e12cb5a55cb5e64296e91e226fbe.cloudfront.net
                  (CloudFront)
            X-Amz-Cf-Id:
              schema:
                type: string
                example: rrv2MARPAxVsfkAQ7pVoJxhZp8c91W6WczkTuNpC6qz0D_u_4w7nhw==
            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: '8686'
            x-memc-expires:
              schema:
                type: string
                example: '13109'
            x-memc-key:
              schema:
                type: string
                example: ae22ecc6449c0be41a7c74a85192660f
          content:
            application/json:
              schema:
                type: object
                properties:
                  facebook_id:
                    type: string
                    example: redonemov
                  id:
                    type: number
                    example: 845781
                  imdb_id:
                    type: string
                    example: tt14948432
                  instagram_id:
                    type: string
                    example: redonemov
                  twitter_id:
                    type: string
                    example: redonemov
                  wikidata_id:
                    type: string
                    example: Q114876737
              examples:
                External IDs:
                  value:
                    facebook_id: redonemov
                    id: 845781
                    imdb_id: tt14948432
                    instagram_id: redonemov
                    twitter_id: redonemov
                    wikidata_id: Q114876737
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````