> ## 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 Company Shareholders

> Fetch shareholders for a company

This endpoint returns comprehensive data about a company including:
- shareholders
- limited partners  
- general partners

Args:
    company_id: The id of the company to fetch shareholders for



## OpenAPI

````yaml get /companies/{company_id}/shareholders
openapi: 3.1.0
info:
  title: Registercheck API
  version: 1.0.0
servers:
  - url: https://jobs-api.registercheck.de/api/v2
security: []
paths:
  /companies/{company_id}/shareholders:
    get:
      tags:
        - Companies
      summary: Get Company Shareholders
      description: |-
        Fetch shareholders for a company

        This endpoint returns comprehensive data about a company including:
        - shareholders
        - limited partners  
        - general partners

        Args:
            company_id: The id of the company to fetch shareholders for
      operationId: get_company_shareholders_companies__company_id__shareholders_get
      parameters:
        - name: company_id
          in: path
          required: true
          schema:
            type: string
            title: Company Id
        - name: levels
          in: query
          required: false
          schema:
            type: integer
            default: 1
            title: Levels
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ShareholdersResponse'
        '404':
          description: Company not found
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
        '500':
          description: Internal server error
      security:
        - HTTPBearer: []
components:
  schemas:
    ShareholdersResponse:
      properties:
        id:
          type: string
          title: Id
          description: Unique identifier of the company
        name:
          anyOf:
            - type: string
            - type: 'null'
          title: Name
          description: Name of the company
        register_number:
          anyOf:
            - type: string
            - type: 'null'
          title: Register Number
          description: Registration number of the company
        shareholders:
          anyOf:
            - items:
                $ref: '#/components/schemas/Shareholder'
              type: array
            - type: 'null'
          title: Shareholders
          description: List of company shareholders
        limited_partners:
          anyOf:
            - items:
                $ref: '#/components/schemas/Shareholder'
              type: array
            - type: 'null'
          title: Limited Partners
          description: List of limited partners
        general_partners:
          anyOf:
            - items:
                $ref: '#/components/schemas/Shareholder'
              type: array
            - type: 'null'
          title: General Partners
          description: List of general partners
      type: object
      required:
        - id
      title: ShareholdersResponse
      description: Response model for company shareholders endpoint
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    Shareholder:
      properties:
        id:
          type: string
          title: Id
          description: Unique identifier for the shareholder
        percentage_share:
          anyOf:
            - type: number
            - type: 'null'
          title: Percentage Share
          description: Percentage ownership stake
        effective_percentage:
          anyOf:
            - type: number
            - type: 'null'
          title: Effective Percentage
          description: Effective percentage ownership through ownership chain
        nominal_value:
          anyOf:
            - type: number
            - type: 'null'
          title: Nominal Value
          description: Nominal value of the shareholding
        currency:
          anyOf:
            - type: string
            - type: 'null'
          title: Currency
          description: Currency code for monetary values
        is_company:
          anyOf:
            - type: boolean
            - type: 'null'
          title: Is Company
          description: Whether the shareholder is a company or individual
        company:
          anyOf:
            - $ref: '#/components/schemas/ShareholderCompany'
            - type: 'null'
          description: Company information if shareholder is a company
        person:
          anyOf:
            - $ref: '#/components/schemas/ShareholderPerson'
            - type: 'null'
          description: Person information if shareholder is an individual
        shareholders:
          anyOf:
            - items:
                $ref: '#/components/schemas/Shareholder'
              type: array
            - type: 'null'
          title: Shareholders
          description: Nested shareholders if applicable
        limited_partners:
          anyOf:
            - items:
                $ref: '#/components/schemas/Shareholder'
              type: array
            - type: 'null'
          title: Limited Partners
          description: Limited partners if applicable
        general_partners:
          anyOf:
            - items:
                $ref: '#/components/schemas/Shareholder'
              type: array
            - type: 'null'
          title: General Partners
          description: General partners if applicable
      type: object
      required:
        - id
      title: Shareholder
      description: Model for shareholder 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
    ShareholderCompany:
      properties:
        id:
          anyOf:
            - type: string
            - type: 'null'
          title: Id
          description: Unique identifier for the company
        name:
          anyOf:
            - type: string
            - type: 'null'
          title: Name
          description: Company name
        register_number:
          anyOf:
            - type: string
            - type: 'null'
          title: Register Number
          description: Company registration number
        register_court:
          anyOf:
            - type: string
            - type: 'null'
          title: Register Court
          description: Court where the company is registered
        legal_form:
          anyOf:
            - type: string
            - type: 'null'
          title: Legal Form
          description: Legal form of the company
        city:
          anyOf:
            - type: string
            - type: 'null'
          title: City
          description: City where company is located
        country:
          anyOf:
            - type: string
            - type: 'null'
          title: Country
          description: Country code where company is registered
      type: object
      title: ShareholderCompany
      description: Model for a shareholder company
    ShareholderPerson:
      properties:
        id:
          anyOf:
            - type: string
            - type: 'null'
          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
        birth_date:
          anyOf:
            - type: string
            - type: 'null'
          title: Birth Date
          description: Date of birth
        city:
          anyOf:
            - type: string
            - type: 'null'
          title: City
          description: City of residence
        country:
          anyOf:
            - type: string
            - type: 'null'
          title: Country
          description: Country code of residence
      type: object
      title: ShareholderPerson
      description: Model for a shareholder person
  securitySchemes:
    HTTPBearer:
      type: http
      description: Enter your API key
      scheme: bearer

````