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

> Fetch company investments:

- Companies the specified company has invested in



## OpenAPI

````yaml get /companies/{company_id}/investments
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}/investments:
    get:
      tags:
        - Companies
      summary: Get Company Investments
      description: |-
        Fetch company investments:

        - Companies the specified company has invested in
      operationId: get_company_investments_companies__company_id__investments_get
      parameters:
        - name: company_id
          in: path
          required: true
          schema:
            type: string
            title: Company Id
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/InvestmentsResponse'
        '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:
    InvestmentsResponse:
      properties:
        company_id:
          anyOf:
            - type: string
            - type: 'null'
          title: Company Id
          description: Unique identifier of the investing company
        company_name:
          anyOf:
            - type: string
            - type: 'null'
          title: Company Name
          description: Name of the investing company
        register_number:
          anyOf:
            - type: string
            - type: 'null'
          title: Register Number
          description: Registration number of the investing company
        investments:
          items:
            $ref: '#/components/schemas/Investment'
          type: array
          title: Investments
          description: List of investments made by the company
      type: object
      title: InvestmentsResponse
      description: Response model for company investments endpoint
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    Investment:
      properties:
        id:
          type: string
          title: Id
          description: Unique identifier for the investment
        percentage_share:
          anyOf:
            - type: number
            - type: 'null'
          title: Percentage Share
          description: Percentage ownership stake
        investment_amount_currency:
          anyOf:
            - type: string
            - type: 'null'
          title: Investment Amount Currency
          description: Currency code for investment amounts
        investment_amount:
          anyOf:
            - type: number
            - type: 'null'
          title: Investment Amount
          description: Total amount invested
        company:
          anyOf:
            - $ref: '#/components/schemas/InvestmentCompany'
            - type: 'null'
          description: Company receiving the investment
        person:
          anyOf:
            - $ref: '#/components/schemas/InvestmentPerson'
            - type: 'null'
          description: Person making the investment
      type: object
      required:
        - id
      title: Investment
      description: Model for investment 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
    InvestmentCompany:
      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
        slug:
          anyOf:
            - type: string
            - type: 'null'
          title: Slug
          description: URL-friendly version of the 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
        website_url:
          anyOf:
            - type: string
            - type: 'null'
          title: Website Url
          description: Company website URL
        linkedin_url:
          anyOf:
            - type: string
            - type: 'null'
          title: Linkedin Url
          description: LinkedIn company page URL
        company_purpose:
          anyOf:
            - type: string
            - type: 'null'
          title: Company Purpose
          description: Business purpose or activity description
        founded_at:
          anyOf:
            - type: string
            - type: 'null'
          title: Founded At
          description: Date when the company was founded
        status:
          anyOf:
            - type: string
            - type: 'null'
          title: Status
          description: Current status of the company
      type: object
      title: InvestmentCompany
      description: Model for a company in investments
    InvestmentPerson:
      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: InvestmentPerson
      description: Model for a person in investments
  securitySchemes:
    HTTPBearer:
      type: http
      description: Enter your API key
      scheme: bearer

````