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

# Get person

> Get a single person by ID with aggregated stats across all identities



## OpenAPI

````yaml /api-reference/openapi.json get /people/{personId}
openapi: 3.1.1
info:
  description: >-
    The public Modem API. Authenticate with an organization API key:
    `Authorization: Bearer modem_…`.
  title: Modem API
  version: 1.0.0
servers:
  - description: Production
    url: https://api.modem.dev/v1
security:
  - bearerAuth: []
paths:
  /people/{personId}:
    get:
      tags:
        - People
      summary: Get person
      description: Get a single person by ID with aggregated stats across all identities
      operationId: people.get
      parameters:
        - in: path
          name: personId
          required: true
          schema:
            pattern: ^\d+$
            type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                properties:
                  avatarUrl:
                    anyOf:
                      - format: uri
                        type: string
                      - type: 'null'
                    description: Avatar image URL for the person.
                    title: Avatar URL
                  avgMessagesPerWeek:
                    type: number
                  company:
                    anyOf:
                      - properties:
                          domain:
                            anyOf:
                              - type: string
                              - type: 'null'
                          employees:
                            items:
                              properties:
                                avatarUrl:
                                  anyOf:
                                    - type: string
                                    - type: 'null'
                                id:
                                  type: string
                                name:
                                  type: string
                              required:
                                - avatarUrl
                                - id
                                - name
                              type: object
                            type: array
                          id:
                            type: string
                          logoUrl:
                            anyOf:
                              - type: string
                              - type: 'null'
                          name:
                            type: string
                        required:
                          - domain
                          - employees
                          - id
                          - logoUrl
                          - name
                        type: object
                      - type: 'null'
                  connections:
                    properties:
                      github:
                        anyOf:
                          - type: string
                          - type: 'null'
                      linkedin:
                        anyOf:
                          - type: string
                          - type: 'null'
                      phone:
                        anyOf:
                          - type: string
                          - type: 'null'
                      title:
                        anyOf:
                          - type: string
                          - type: 'null'
                      twitter:
                        anyOf:
                          - type: string
                          - type: 'null'
                      website:
                        anyOf:
                          - type: string
                          - type: 'null'
                    required:
                      - github
                      - linkedin
                      - phone
                      - title
                      - twitter
                      - website
                    type: object
                  conversationCount:
                    type: integer
                  createdAt:
                    format: date-time
                    type: string
                  description:
                    anyOf:
                      - type: string
                      - type: 'null'
                  displayName:
                    description: Display name for the person.
                    title: Display Name
                    type: string
                  ecosystemTags:
                    items:
                      type: string
                    type: array
                  expertiseTags:
                    items:
                      type: string
                    type: array
                  firstSeenAt:
                    anyOf:
                      - format: date-time
                        type: string
                      - type: 'null'
                  id:
                    pattern: ^\d+$
                    type: string
                  identityCount:
                    type: integer
                  isVip:
                    type: boolean
                  lastSeenAt:
                    anyOf:
                      - format: date-time
                        type: string
                      - type: 'null'
                  messageCount:
                    type: integer
                  primaryEmail:
                    anyOf:
                      - format: email
                        type: string
                      - type: 'null'
                  sources:
                    items:
                      pattern: ^[a-z0-9]+(?:-[a-z0-9]+)*$
                      type: string
                    type: array
                  weeklyActivity:
                    items:
                      type: integer
                    type: array
                required:
                  - avatarUrl
                  - avgMessagesPerWeek
                  - company
                  - connections
                  - conversationCount
                  - description
                  - displayName
                  - ecosystemTags
                  - expertiseTags
                  - id
                  - identityCount
                  - isVip
                  - messageCount
                  - primaryEmail
                  - sources
                  - weeklyActivity
                type: object
          description: OK
        '400':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
          description: Invalid request (validation failed).
        '401':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
          description: Missing or invalid API key.
        '403':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
          description: The API key does not have access to this resource.
        '404':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
          description: The requested resource was not found.
        '429':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
          description: Rate limit exceeded.
        '500':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
          description: Internal server error.
components:
  schemas:
    Error:
      properties:
        code:
          description: Machine-readable error code, e.g. `NOT_FOUND`.
          examples:
            - NOT_FOUND
          type: string
        data:
          description: Optional structured error details.
        defined:
          description: True if the error was declared in the procedure contract.
          type: boolean
        message:
          description: Human-readable error message.
          type: string
        status:
          description: HTTP status code.
          examples:
            - 404
          type: integer
      required:
        - code
        - defined
        - message
        - status
      type: object
  securitySchemes:
    bearerAuth:
      description: Organization API key (`modem_…`).
      scheme: bearer
      type: http

````