> ## Documentation Index
> Fetch the complete documentation index at: https://docs.particle.pro/llms.txt
> Use this file to discover all available pages before exploring further.

# List a Person's external profiles

> Returns every known third-party profile (LinkedIn, Wikipedia, social) for the Person. Discovery happens asynchronously via the v1.person.created enrichment subscriber; a freshly-created Person may not yet have all its profiles populated.



## OpenAPI

````yaml /openapi.json get /v1/people/{slug}/external-links
openapi: 3.1.0
info:
  description: Public API for Particle — news intelligence, financial data, and analysis.
  title: Particle API
  version: 0.1.0
servers:
  - url: https://api.particle.pro
security:
  - ApiKeyHeader: []
  - BearerAuth: []
paths:
  /v1/people/{slug}/external-links:
    get:
      tags:
        - People
        - tier:standard
      summary: List a Person's external profiles
      description: >-
        Returns every known third-party profile (LinkedIn, Wikipedia, social)
        for the Person. Discovery happens asynchronously via the
        v1.person.created enrichment subscriber; a freshly-created Person may
        not yet have all its profiles populated.
      operationId: list-person-external-links
      parameters:
        - description: 'Results per page (default: all)'
          explode: false
          in: query
          name: limit
          schema:
            description: 'Results per page (default: all)'
            format: int64
            maximum: 100
            minimum: 1
            type: integer
        - description: Opaque pagination cursor from previous response
          explode: false
          in: query
          name: cursor
          schema:
            description: Opaque pagination cursor from previous response
            type: string
        - description: Person slug (e.g., 'satya-nadella')
          in: path
          name: slug
          required: true
          schema:
            description: Person slug (e.g., 'satya-nadella')
            type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PageExternalLink'
          description: OK
        default:
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/PlatformError'
          description: Error
      x-codeSamples:
        - label: cURL
          lang: curl
          source: |-
            curl -H "X-API-Key: $PARTICLE_API_KEY" \
              "https://api.particle.pro/v1/people/{slug}/external-links"
components:
  schemas:
    PageExternalLink:
      additionalProperties: false
      properties:
        cursor:
          description: Pass to next request for more results
          type: string
        data:
          description: List of results
          items:
            $ref: '#/components/schemas/ExternalLink'
          type:
            - array
            - 'null'
        has_more:
          description: Whether more results exist
          type: boolean
      required:
        - data
        - has_more
      type: object
    PlatformError:
      additionalProperties: false
      properties:
        detail:
          description: >-
            A human-readable explanation specific to this occurrence of the
            problem.
          examples:
            - Property foo is required but is missing.
          type: string
        error_code:
          type: string
        errors:
          description: Optional list of individual error details
          items:
            $ref: '#/components/schemas/ErrorDetail'
          type:
            - array
            - 'null'
        instance:
          description: >-
            A URI reference that identifies the specific occurrence of the
            problem.
          examples:
            - https://example.com/error-log/abc123
          format: uri
          type: string
        resolve:
          $ref: '#/components/schemas/ErrorResolve'
        status:
          description: HTTP status code
          examples:
            - 400
          format: int64
          type: integer
        title:
          description: >-
            A short, human-readable summary of the problem type. This value
            should not change between occurrences of the error.
          examples:
            - Bad Request
          type: string
        type:
          default: about:blank
          description: A URI reference to human-readable documentation for the error.
          examples:
            - https://example.com/errors/example
          format: uri
          type: string
      type: object
    ExternalLink:
      additionalProperties: false
      properties:
        attributes:
          description: >-
            Optional platform-specific metadata: audience size, profile fields,
            account status, and related signals. The set varies by platform and
            grows over time — clients should treat unknown attribute names as
            additive.
          items:
            $ref: '#/components/schemas/ExternalLinkAttribute'
          type:
            - array
            - 'null'
        identifier:
          description: >-
            Platform-native identifier (numeric id, slug, handle, or full URL).
            Empty for the 'website' platform, where the URL is the canonical
            reference.
          type: string
        platform:
          $ref: '#/components/schemas/ExternalLinkPlatform'
          description: 'Platform metadata: machine name, display name, and broad type.'
        url:
          description: >-
            Resolved web URL for this presence. Built from the identifier via a
            per-platform template, or passed through for 'website'.
          type: string
      required:
        - platform
      type: object
    ErrorDetail:
      additionalProperties: false
      properties:
        location:
          description: >-
            Where the error occurred, e.g. 'body.items[3].tags' or
            'path.thing-id'
          type: string
        message:
          description: Error message text
          type: string
        value:
          description: The value at the given location
      type: object
    ErrorResolve:
      additionalProperties: false
      properties:
        action:
          type: string
        endpoint:
          type: string
        message:
          type: string
        method:
          type: string
        url:
          type: string
      required:
        - message
      type: object
    ExternalLinkAttribute:
      additionalProperties: false
      properties:
        category:
          description: >-
            Broad grouping for the attribute. Today's known values are
            audience_size, content, profile, and account_status — the set is
            open and may grow without a versioning event, so clients should
            treat unrecognised categories as additive rather than invalid.
          type: string
        name:
          description: >-
            Platform-native attribute name (e.g. 'subscribers', 'followers',
            'views', 'handle'). Vocabulary varies by platform; use Category to
            group related attributes if you don't recognise the Name.
          type: string
        observed_at:
          description: >-
            When this attribute was last observed from the upstream source.
            Omitted when unavailable.
          format: date-time
          type: string
        value:
          description: >-
            Attribute value. JSON type matches the Category: numbers for
            audience_size/content, strings for profile/account_status (with bool
            for flags). Null when the underlying source is unset.
      required:
        - name
        - value
      type: object
    ExternalLinkPlatform:
      additionalProperties: false
      properties:
        display_name:
          description: >-
            Human-readable name suitable for UI display (e.g. 'Apple Podcasts',
            'X (Twitter)').
          type: string
        name:
          description: >-
            Stable machine name (e.g. 'spotify', 'youtube', 'twitter'). Suitable
            for filtering or routing on the client.
          type: string
        type:
          description: >-
            Broad category for the platform. Use this to group presences in a UI
            rather than enumerating every Name.
          enum:
            - podcast_directory
            - music_service
            - social_profile
            - video_channel
            - community
            - website
            - other
          type: string
      required:
        - name
        - display_name
        - type
      type: object
  securitySchemes:
    ApiKeyHeader:
      description: Pass your API key in the X-API-Key header (recommended).
      in: header
      name: X-API-Key
      type: apiKey
    BearerAuth:
      description: Pass your API key as a Bearer token in the Authorization header.
      scheme: bearer
      type: http

````