API Documentation
- Authentication
- Search Endpoints 🔍
- Company Endpoints 🏢
- New Incorporations 🏗️
- Persons Endpoints 👤
- Lists Endpoints 📋
- Watchlist Subscriptions
Company Endpoints 🏢
Get Company Investments
Fetch company investments:
- Companies the specified company has invested in
GET
/
companies
/
{company_id}
/
investments
Copy
curl --request GET \
--url https://jobs-api.registercheck.de/api/v2/companies/{company_id}/investments \
--header 'Authorization: Bearer <token>'
Copy
{
"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
Enter your API key
Path Parameters
Response
200
application/json
Successful Response
Response model for company investments endpoint
Was this page helpful?
Copy
curl --request GET \
--url https://jobs-api.registercheck.de/api/v2/companies/{company_id}/investments \
--header 'Authorization: Bearer <token>'
Copy
{
"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>"
}
}
]
}
Assistant
Responses are generated using AI and may contain mistakes.