> ## 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 the external ID's that belong to a person.



## OpenAPI

````yaml api-reference/openapi3.json get /3/person/{person_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/person/{person_id}/external_ids:
    get:
      tags:
        - PEOPLE
      summary: External IDs
      description: This endpoint get the external ID's that belong to a person.
      operationId: externalIds1
      parameters:
        - $ref: '#/components/parameters/language'
        - $ref: '#/components/parameters/person_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=10063
            Connection:
              schema:
                type: string
                example: keep-alive
            Content-Encoding:
              schema:
                type: string
                example: gzip
            Date:
              schema:
                type: string
                example: Sun, 05 Jan 2025 16:05:49 GMT
            ETag:
              schema:
                type: string
                example: W/"c13a4d4c7996926f4083cd608c0ad08c"
            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 e3e94284a800d30d02bd662be67e1bf2.cloudfront.net
                  (CloudFront)
            X-Amz-Cf-Id:
              schema:
                type: string
                example: T9NVNiImvcmdx16kv19OvQ7XSBXPAfXNDEtXcdMIW7mZ1k4QQ3lgOg==
            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: '12689'
            x-memc-expires:
              schema:
                type: string
                example: '10063'
            x-memc-key:
              schema:
                type: string
                example: 9ca7fa025bd8f06bc67e13ed885b1743
          content:
            application/json:
              schema:
                type: object
                properties:
                  facebook_id:
                    type: string
                    example: WillSmith
                  freebase_id:
                    type: string
                    example: /en/will_smith
                  freebase_mid:
                    type: string
                    example: /m/0147dk
                  id:
                    type: number
                    example: 2888
                  imdb_id:
                    type: string
                    example: nm0000226
                  instagram_id:
                    type: string
                    example: willsmith
                  tiktok_id:
                    type: string
                    example: willsmith
                  tvrage_id:
                    type: number
                    example: 9542
                  twitter_id:
                    type: string
                    example: ''
                  wikidata_id:
                    type: string
                    example: Q40096
                  youtube_id:
                    type: string
                    example: WillSmith
              examples:
                external ids:
                  value:
                    facebook_id: WillSmith
                    freebase_id: /en/will_smith
                    freebase_mid: /m/0147dk
                    id: 2888
                    imdb_id: nm0000226
                    instagram_id: willsmith
                    tiktok_id: willsmith
                    tvrage_id: 9542
                    twitter_id: ''
                    wikidata_id: Q40096
                    youtube_id: WillSmith
components:
  parameters:
    language:
      name: language
      in: query
      description: Specifies the language in which the response should be returned.
      schema:
        type: string
        example: en-US
    person_id:
      name: person_id
      in: path
      required: true
      description: >-
        This refers to a unique identifier assigned to an individual within a
        database.
      schema:
        type: string
        example: ''
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````