> ## 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 Details

> Get detailed information about a person by its id.

- Basic person information
- Relationships



## OpenAPI

````yaml get /persons/{person_id}
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}:
    get:
      tags:
        - Persons
      summary: Get Person Details
      description: |-
        Get detailed information about a person by its id.

        - Basic person information
        - Relationships
      operationId: get_person_details_persons__person_id__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/PersonResponse'
        '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:
    PersonResponse:
      properties:
        person:
          $ref: '#/components/schemas/Person'
          description: Detailed person information including profiles
      type: object
      required:
        - person
      title: PersonResponse
      description: Response model for person detail endpoint
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    Person:
      properties:
        id:
          type: string
          title: Id
          description: Unique identifier for the person
        slug:
          anyOf:
            - type: string
            - type: 'null'
          title: Slug
          description: URL-friendly version of the person's name
        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
        birth_year:
          anyOf:
            - type: integer
            - type: 'null'
          title: Birth Year
          description: Year of birth
        birth_month:
          anyOf:
            - type: integer
            - type: 'null'
          title: Birth Month
          description: Month of birth
        profiles:
          items:
            $ref: '#/components/schemas/Profile'
          type: array
          title: Profiles
          description: List of business profiles and roles
      type: object
      required:
        - id
      title: Person
      description: Model for person 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
    Profile:
      properties:
        id:
          type: string
          title: Id
          description: Unique identifier for the profile
        is_confirmed:
          anyOf:
            - type: boolean
            - type: 'null'
          title: Is Confirmed
          description: Whether the profile has been confirmed/verified
        confidence_score:
          anyOf:
            - type: number
            - type: 'null'
          title: Confidence Score
          description: Confidence score for profile matching (0.0-1.0)
        type:
          type: string
          enum:
            - representative
            - limited_partner
            - prokura
            - shareholder
          title: Type
          description: Type of profile role
        is_general_partner:
          anyOf:
            - type: boolean
            - type: 'null'
          title: Is General Partner
          description: >-
            Only relevant for 'representative' type. True when role is
            representative AND company has is_kg as true
        company_id:
          anyOf:
            - type: string
            - type: 'null'
          title: Company Id
          description: Unique identifier of the associated company
      type: object
      required:
        - id
        - type
      title: Profile
      description: Model for person profile information
  securitySchemes:
    HTTPBearer:
      type: http
      description: Enter your API key
      scheme: bearer

````