Companies
v1
Company Financial Reports
Returns all financial reports for a given company. Credit Note: Accessing financial data consumes 1 credit per company only if financial data is available and there was no active deep data access within the last 12 months. Once charged, no additional credits are consumed for accessing the same company’s financial data again within that 12-month period.
:::info Requires the companies:read OAuth2 scope. :::
get/v1/companies/{id}/financials
Path parameters
idstring required
The company's ID. Note that the older string-based ID format continues to be supported.
Query parameters
account_idstring required
The Leadfeeder Account ID. The Account ID can be retrieved using the List Accounts endpoint.
Response
Success
Example response
{
"data": [
{
"type": "company_financials",
"id": "129011_2024",
"attributes": {
"year": 2024,
"consolidated": true,
"available_indicators": [
{
"name": "revenue_per_employee",
"value": 1234567,
"unit": "EUR"
}
]
}
}
],
"meta": {
"credits": {
"charged": 1
},
"request_id": "cf054205-dd8c-4473-8689-07c30fe0789f"
}
}