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



## OpenAPI

````yaml get /3/person/{person_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/person/{person_id}/external_ids:
    parameters:
      - name: person_id
        in: path
        required: true
        schema:
          type: integer
          example: 164930
    get:
      tags:
        - PEOPLE
      summary: External IDs
      description: This endpoint get the external ID's that belong to a person.
      operationId: externalIds1
      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=3045
            Connection:
              schema:
                type: string
                example: keep-alive
            Content-Encoding:
              schema:
                type: string
                example: gzip
            Date:
              schema:
                type: string
                example: Tue, 31 Dec 2024 10:35:39 GMT
            ETag:
              schema:
                type: string
                example: W/"78644c5ea26067feed69d24b28d35fca"
            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 39721a78218c7c28e95e60fe0370079c.cloudfront.net
                  (CloudFront)
            X-Amz-Cf-Id:
              schema:
                type: string
                example: cX83VFEDskXE67ESyZm743f3q9tuF2s53ue8NyPmEffyTnyrTgbLbA==
            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: '25401'
            x-memc-expires:
              schema:
                type: string
                example: '3045'
            x-memc-key:
              schema:
                type: string
                example: a74d97ae44bad8ad2662a1adba72454a
          content:
            application/json:
              schema:
                type: object
                properties:
                  facebook_id:
                    type: string
                    example: OfficialKatrinaLaw
                  freebase_id:
                    type: string
                    example: /en/katrina_law
                  freebase_mid:
                    type: string
                    example: /m/0bmh92k
                  id:
                    type: number
                    example: 164930
                  imdb_id:
                    type: string
                    example: nm0492345
                  instagram_id:
                    type: string
                    example: katrinalaw
                  tiktok_id:
                    nullable: true
                    example: null
                  tvrage_id:
                    nullable: true
                    example: null
                  twitter_id:
                    type: string
                    example: katrinalaw
                  wikidata_id:
                    type: string
                    example: Q2054485
                  youtube_id:
                    nullable: true
                    example: null
              examples:
                External IDs:
                  value:
                    facebook_id: OfficialKatrinaLaw
                    freebase_id: /en/katrina_law
                    freebase_mid: /m/0bmh92k
                    id: 164930
                    imdb_id: nm0492345
                    instagram_id: katrinalaw
                    tiktok_id: null
                    tvrage_id: null
                    twitter_id: katrinalaw
                    wikidata_id: Q2054485
                    youtube_id: null
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````