API Documentation
- Authentication
- Search Endpoints 🔍
- Company Endpoints 🏢
- New Incorporations 🏗️
- Persons Endpoints 👤
- Lists Endpoints 📋
- Watchlist Subscriptions
Company Endpoints 🏢
Get Company Shareholders
Fetch shareholders for a company
This endpoint returns comprehensive data about a company including:
- shareholders
- limited partners
- general partners.
GET
/
companies
/
{company_id}
/
shareholders
Copy
curl --request GET \
--url https://jobs-api.registercheck.de/api/v2/companies/{company_id}/shareholders \
--header 'Authorization: Bearer <token>'
Copy
{
"id": "<string>",
"name": "<string>",
"register_number": "<string>",
"shareholders": [
{
"id": "<string>",
"percentage_share": 123,
"nominal_value": 123,
"currency": "<string>",
"is_company": true,
"company": {
"id": "<string>",
"name": "<string>",
"register_number": "<string>",
"register_court": "<string>",
"legal_form": "<string>",
"city": "<string>",
"country": "<string>"
},
"person": {
"id": "<string>",
"full_name": "<string>",
"first_name": "<string>",
"last_name": "<string>",
"birth_date": "<string>",
"city": "<string>",
"country": "<string>"
},
"shareholders": [
{}
],
"limited_partners": [
{}
],
"general_partners": [
{}
]
}
],
"limited_partners": [
{
"id": "<string>",
"percentage_share": 123,
"nominal_value": 123,
"currency": "<string>",
"is_company": true,
"company": {
"id": "<string>",
"name": "<string>",
"register_number": "<string>",
"register_court": "<string>",
"legal_form": "<string>",
"city": "<string>",
"country": "<string>"
},
"person": {
"id": "<string>",
"full_name": "<string>",
"first_name": "<string>",
"last_name": "<string>",
"birth_date": "<string>",
"city": "<string>",
"country": "<string>"
},
"shareholders": [
{}
],
"limited_partners": [
{}
],
"general_partners": [
{}
]
}
],
"general_partners": [
{
"id": "<string>",
"percentage_share": 123,
"nominal_value": 123,
"currency": "<string>",
"is_company": true,
"company": {
"id": "<string>",
"name": "<string>",
"register_number": "<string>",
"register_court": "<string>",
"legal_form": "<string>",
"city": "<string>",
"country": "<string>"
},
"person": {
"id": "<string>",
"full_name": "<string>",
"first_name": "<string>",
"last_name": "<string>",
"birth_date": "<string>",
"city": "<string>",
"country": "<string>"
},
"shareholders": [
{}
],
"limited_partners": [
{}
],
"general_partners": [
{}
]
}
]
}
Authorizations
Enter your API key
Path Parameters
Response
200
application/json
Successful Response
Response model for company shareholders endpoint
Was this page helpful?
Copy
curl --request GET \
--url https://jobs-api.registercheck.de/api/v2/companies/{company_id}/shareholders \
--header 'Authorization: Bearer <token>'
Copy
{
"id": "<string>",
"name": "<string>",
"register_number": "<string>",
"shareholders": [
{
"id": "<string>",
"percentage_share": 123,
"nominal_value": 123,
"currency": "<string>",
"is_company": true,
"company": {
"id": "<string>",
"name": "<string>",
"register_number": "<string>",
"register_court": "<string>",
"legal_form": "<string>",
"city": "<string>",
"country": "<string>"
},
"person": {
"id": "<string>",
"full_name": "<string>",
"first_name": "<string>",
"last_name": "<string>",
"birth_date": "<string>",
"city": "<string>",
"country": "<string>"
},
"shareholders": [
{}
],
"limited_partners": [
{}
],
"general_partners": [
{}
]
}
],
"limited_partners": [
{
"id": "<string>",
"percentage_share": 123,
"nominal_value": 123,
"currency": "<string>",
"is_company": true,
"company": {
"id": "<string>",
"name": "<string>",
"register_number": "<string>",
"register_court": "<string>",
"legal_form": "<string>",
"city": "<string>",
"country": "<string>"
},
"person": {
"id": "<string>",
"full_name": "<string>",
"first_name": "<string>",
"last_name": "<string>",
"birth_date": "<string>",
"city": "<string>",
"country": "<string>"
},
"shareholders": [
{}
],
"limited_partners": [
{}
],
"general_partners": [
{}
]
}
],
"general_partners": [
{
"id": "<string>",
"percentage_share": 123,
"nominal_value": 123,
"currency": "<string>",
"is_company": true,
"company": {
"id": "<string>",
"name": "<string>",
"register_number": "<string>",
"register_court": "<string>",
"legal_form": "<string>",
"city": "<string>",
"country": "<string>"
},
"person": {
"id": "<string>",
"full_name": "<string>",
"first_name": "<string>",
"last_name": "<string>",
"birth_date": "<string>",
"city": "<string>",
"country": "<string>"
},
"shareholders": [
{}
],
"limited_partners": [
{}
],
"general_partners": [
{}
]
}
]
}
Assistant
Responses are generated using AI and may contain mistakes.