API Documentation
- Authentication
- Filter Endpoints (New)
- Search Endpoints 🔍
- Company Endpoints 🏢
- New Incorporations 🏗️
- Persons Endpoints 👤
- Lists Endpoints 📋
- Watchlist Subscriptions
Company Endpoints 🏢
Get Company Financial Reports With Extraction
Get financial reports for a company and extract financial data if not already available.
This endpoint returns all financial reports for a company including:
- Report metadata (name, date, URLs)
- Extracted financial data (if available or extracted)
- Automatic extraction from HTML reports when data is missing
GET
/
companies
/
{company_id}
/
financials
Copy
curl --request GET \
--url https://jobs-api.registercheck.de/api/v2/companies/{company_id}/financials \
--header 'Authorization: Bearer <token>'
Copy
{
"company_id": "<string>",
"company_name": "<string>",
"financial_reports": [
{
"id": "<string>",
"name": "<string>",
"link": "<string>",
"date": "<string>",
"language": "<string>",
"report_pdf_url": "<string>",
"report_table_html_url": "<string>",
"is_consolidated": true,
"company_id": "<string>",
"financial_data": {
"profit_loss": {
"revenue": 123,
"total_output": 123,
"gross_profit": 123,
"personnel_expenses": 123,
"depreciation": 123,
"other_operating_expenses": 123,
"ebit": 123,
"ebitda": 123,
"financial_result": 123,
"interest_and_similar_income": 123,
"interest_and_similar_expenses": 123,
"income_taxes": 123,
"net_income": 123,
"net_loss": 123
},
"assets": {
"total_assets": 123,
"fixed_assets": 123,
"current_assets": 123,
"cash_and_equivalents": 123
},
"liabilities": {
"total_equity_and_liabilities": 123,
"equity": 123,
"liabilities": 123,
"liabilities_to_shareholders": 123,
"bank_loans": 123,
"subscribed_capital": 123,
"capital_reserve": 123,
"provisions": 123
},
"meta": {
"currency": "<string>",
"currency_unit": "<string>",
"year": 123,
"is_consolidated": true,
"company_name": "<string>",
"location": "<string>",
"source": "<string>"
},
"employees": 123,
"financial_obligations": "<string>"
}
}
]
}
Authorizations
Enter your API key
Path Parameters
Response
200
application/json
Successful Response
Collection of financial reports for a specific company.
Was this page helpful?
Copy
curl --request GET \
--url https://jobs-api.registercheck.de/api/v2/companies/{company_id}/financials \
--header 'Authorization: Bearer <token>'
Copy
{
"company_id": "<string>",
"company_name": "<string>",
"financial_reports": [
{
"id": "<string>",
"name": "<string>",
"link": "<string>",
"date": "<string>",
"language": "<string>",
"report_pdf_url": "<string>",
"report_table_html_url": "<string>",
"is_consolidated": true,
"company_id": "<string>",
"financial_data": {
"profit_loss": {
"revenue": 123,
"total_output": 123,
"gross_profit": 123,
"personnel_expenses": 123,
"depreciation": 123,
"other_operating_expenses": 123,
"ebit": 123,
"ebitda": 123,
"financial_result": 123,
"interest_and_similar_income": 123,
"interest_and_similar_expenses": 123,
"income_taxes": 123,
"net_income": 123,
"net_loss": 123
},
"assets": {
"total_assets": 123,
"fixed_assets": 123,
"current_assets": 123,
"cash_and_equivalents": 123
},
"liabilities": {
"total_equity_and_liabilities": 123,
"equity": 123,
"liabilities": 123,
"liabilities_to_shareholders": 123,
"bank_loans": 123,
"subscribed_capital": 123,
"capital_reserve": 123,
"provisions": 123
},
"meta": {
"currency": "<string>",
"currency_unit": "<string>",
"year": 123,
"is_consolidated": true,
"company_name": "<string>",
"location": "<string>",
"source": "<string>"
},
"employees": 123,
"financial_obligations": "<string>"
}
}
]
}
Assistant
Responses are generated using AI and may contain mistakes.