Get Company Financial Reports With Extraction
curl --request GET \
--url https://jobs-api.registercheck.de/api/v2/companies/{company_id}/financials \
--header 'Authorization: Bearer <token>'import requests
url = "https://jobs-api.registercheck.de/api/v2/companies/{company_id}/financials"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://jobs-api.registercheck.de/api/v2/companies/{company_id}/financials', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://jobs-api.registercheck.de/api/v2/companies/{company_id}/financials",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://jobs-api.registercheck.de/api/v2/companies/{company_id}/financials"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://jobs-api.registercheck.de/api/v2/companies/{company_id}/financials")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://jobs-api.registercheck.de/api/v2/companies/{company_id}/financials")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"company_id": "<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>"
}
}
],
"company_name": "<string>"
}{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}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
Get Company Financial Reports With Extraction
curl --request GET \
--url https://jobs-api.registercheck.de/api/v2/companies/{company_id}/financials \
--header 'Authorization: Bearer <token>'import requests
url = "https://jobs-api.registercheck.de/api/v2/companies/{company_id}/financials"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://jobs-api.registercheck.de/api/v2/companies/{company_id}/financials', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://jobs-api.registercheck.de/api/v2/companies/{company_id}/financials",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://jobs-api.registercheck.de/api/v2/companies/{company_id}/financials"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://jobs-api.registercheck.de/api/v2/companies/{company_id}/financials")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://jobs-api.registercheck.de/api/v2/companies/{company_id}/financials")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"company_id": "<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>"
}
}
],
"company_name": "<string>"
}{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}Authorizations
Enter your API key
Path Parameters
Response
Successful Response
Was this page helpful?
⌘I
