GET
/
companies
/
{company_id}
/
investments
curl --request GET \
  --url https://jobs-api.registercheck.de/api/v2/companies/{company_id}/investments \
  --header 'Authorization: Bearer <token>'
{
  "company_id": "<string>",
  "company_name": "<string>",
  "register_number": "<string>",
  "investments": [
    {
      "id": "<string>",
      "percentage_share": 123,
      "nominal_value": 123,
      "investment_amount_currency": "<string>",
      "entry_date": "<string>",
      "exit_date": "<string>",
      "investment_type": "<string>",
      "is_company": true,
      "investment_amount": 123,
      "company": {
        "id": "<string>",
        "name": "<string>",
        "slug": "<string>",
        "register_number": "<string>",
        "register_court": "<string>",
        "legal_form": "<string>",
        "city": "<string>",
        "country": "<string>",
        "website_url": "<string>",
        "linkedin_url": "<string>",
        "company_purpose": "<string>",
        "founded_at": "<string>",
        "status": "<string>"
      },
      "person": {
        "id": "<string>",
        "full_name": "<string>",
        "first_name": "<string>",
        "last_name": "<string>",
        "birth_date": "<string>",
        "city": "<string>",
        "country": "<string>"
      }
    }
  ]
}

Authorizations

Authorization
string
header
required

Enter your API key

Path Parameters

company_id
string
required

Response

200
application/json

Successful Response

Response model for company investments endpoint