API Documentation
- Authentication
- Search Endpoints π
- Company Endpoints π’
- New Incorporations ποΈ
- Persons Endpoints π€
- Lists Endpoints π
- Watchlist Subscriptions
Company Endpoints π’
Get Company History
Get the history of a company by its id.
This endpoint returns the companyβs history including:
- Historical events
- Representatives and their changes
- Limited partners and their changes
- Prokura and their changes
GET
/
companies
/
{company_id}
/
history
Copy
curl --request GET \
--url https://jobs-api.registercheck.de/api/v2/companies/{company_id}/history \
--header 'Authorization: Bearer <token>'
Copy
{
"company_id": "<string>",
"company_name": "<string>",
"register_number": "<string>",
"company_history": {
"events": [
{
"id": "<string>",
"type": "<string>",
"status": "<string>",
"event_value": "<string>",
"event_date": "<string>",
"entry_number": "<string>",
"registered_capital": "<string>",
"company_name": "<string>",
"address": "<string>",
"location": "<string>",
"company_purpose": "<string>",
"general_representation_arrangement": "<string>",
"legal_form": "<string>",
"other_legal_relationships": "<string>",
"comments": "<string>",
"prokura_id": "<string>",
"representatives": [
{
"id": "<string>",
"is_company": true,
"city": "<string>",
"titles": [
"<string>"
],
"first_name": "<string>",
"last_name": "<string>",
"birth_name": "<string>",
"birth_date": "<string>",
"role": "<string>",
"job": "<string>",
"name": "<string>",
"register_court": "<string>",
"register_number": "<string>",
"register_prefix": "<string>",
"status": "<string>",
"representation_rule": "<string>",
"is_general_partner": true,
"person": {
"id": "<string>",
"full_name": "<string>",
"first_name": "<string>",
"last_name": "<string>",
"birth_date": "<string>"
},
"company": {
"id": "<string>",
"name": "<string>",
"register_number": "<string>",
"register_court": "<string>"
}
}
]
}
]
}
}
Authorizations
Enter your API key
Path Parameters
Response
200
application/json
Successful Response
Response model for company history endpoint
Was this page helpful?
Copy
curl --request GET \
--url https://jobs-api.registercheck.de/api/v2/companies/{company_id}/history \
--header 'Authorization: Bearer <token>'
Copy
{
"company_id": "<string>",
"company_name": "<string>",
"register_number": "<string>",
"company_history": {
"events": [
{
"id": "<string>",
"type": "<string>",
"status": "<string>",
"event_value": "<string>",
"event_date": "<string>",
"entry_number": "<string>",
"registered_capital": "<string>",
"company_name": "<string>",
"address": "<string>",
"location": "<string>",
"company_purpose": "<string>",
"general_representation_arrangement": "<string>",
"legal_form": "<string>",
"other_legal_relationships": "<string>",
"comments": "<string>",
"prokura_id": "<string>",
"representatives": [
{
"id": "<string>",
"is_company": true,
"city": "<string>",
"titles": [
"<string>"
],
"first_name": "<string>",
"last_name": "<string>",
"birth_name": "<string>",
"birth_date": "<string>",
"role": "<string>",
"job": "<string>",
"name": "<string>",
"register_court": "<string>",
"register_number": "<string>",
"register_prefix": "<string>",
"status": "<string>",
"representation_rule": "<string>",
"is_general_partner": true,
"person": {
"id": "<string>",
"full_name": "<string>",
"first_name": "<string>",
"last_name": "<string>",
"birth_date": "<string>"
},
"company": {
"id": "<string>",
"name": "<string>",
"register_number": "<string>",
"register_court": "<string>"
}
}
]
}
]
}
}
Assistant
Responses are generated using AI and may contain mistakes.