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

# Get Person Contact

> Get contact and social media information about a person by their id.

 - AI-generated professional summary
 - Professional profiles (LinkedIn, Crunchbase)
 - Social media accounts (Instagram, Facebook, Twitter)
 - Contact information (phone, email)
 - Web presence (website)



## OpenAPI

````yaml get /persons/{person_id}/contact
openapi: 3.1.0
info:
  title: Registercheck API
  version: 1.0.0
servers:
  - url: https://jobs-api.registercheck.de/api/v2
security: []
paths:
  /persons/{person_id}/contact:
    get:
      tags:
        - Persons
      summary: Get Person Contact
      description: |-
        Get contact and social media information about a person by their id.

         - AI-generated professional summary
         - Professional profiles (LinkedIn, Crunchbase)
         - Social media accounts (Instagram, Facebook, Twitter)
         - Contact information (phone, email)
         - Web presence (website)
      operationId: get_person_contact_persons__person_id__contact_get
      parameters:
        - name: person_id
          in: path
          required: true
          schema:
            type: string
            title: Person Id
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PersonContactResponse'
        '404':
          description: Person not found
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
        '500':
          description: Internal server error
      security:
        - HTTPBearer: []
components:
  schemas:
    PersonContactResponse:
      properties:
        id:
          type: string
          title: Id
          description: Unique identifier for the person
        full_name:
          anyOf:
            - type: string
            - type: 'null'
          title: Full Name
          description: Full name of the person
        first_name:
          anyOf:
            - type: string
            - type: 'null'
          title: First Name
          description: First name of the person
        last_name:
          anyOf:
            - type: string
            - type: 'null'
          title: Last Name
          description: Last name of the person
        city:
          anyOf:
            - type: string
            - type: 'null'
          title: City
          description: City of residence
        birth_date:
          anyOf:
            - type: string
            - type: 'null'
          title: Birth Date
          description: Date of birth
        online_presence:
          anyOf:
            - $ref: '#/components/schemas/PersonOnlinePresence'
            - type: 'null'
          description: Online presence and contact information
        found:
          type: boolean
          title: Found
          description: Whether the person was found in the database
          default: true
        message:
          anyOf:
            - type: string
            - type: 'null'
          title: Message
          description: Additional message or error information
      type: object
      required:
        - id
      title: PersonContactResponse
      description: Response model for person contact/social media information
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    PersonOnlinePresence:
      properties:
        avatar_url:
          anyOf:
            - type: string
            - type: 'null'
          title: Avatar Url
          description: URL to person's profile picture/avatar
        socials:
          anyOf:
            - $ref: '#/components/schemas/PersonSocials'
            - type: 'null'
          description: Social media profile URLs
        phone_number:
          anyOf:
            - type: string
            - type: 'null'
          title: Phone Number
          description: Phone number
        email_addresses:
          anyOf:
            - items:
                type: string
              type: array
            - type: 'null'
          title: Email Addresses
          description: List of email addresses
        summary:
          anyOf:
            - type: string
            - type: 'null'
          title: Summary
          description: Brief biographical summary or description
      type: object
      title: PersonOnlinePresence
      description: Model for person's online presence/social media information
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
    PersonSocials:
      properties:
        linkedin_url:
          anyOf:
            - type: string
            - type: 'null'
          title: Linkedin Url
          description: LinkedIn personal profile URL
        instagram_url:
          anyOf:
            - type: string
            - type: 'null'
          title: Instagram Url
          description: Instagram profile URL
        facebook_url:
          anyOf:
            - type: string
            - type: 'null'
          title: Facebook Url
          description: Facebook profile URL
        twitter_url:
          anyOf:
            - type: string
            - type: 'null'
          title: Twitter Url
          description: Twitter/X profile URL
        crunchbase_url:
          anyOf:
            - type: string
            - type: 'null'
          title: Crunchbase Url
          description: Crunchbase personal profile URL
        website_url:
          anyOf:
            - type: string
            - type: 'null'
          title: Website Url
          description: Personal website URL
      type: object
      title: PersonSocials
      description: Model for person's social media URLs
  securitySchemes:
    HTTPBearer:
      type: http
      description: Enter your API key
      scheme: bearer

````