registercheckby openlaw group
API referenceFinancial statements

Retrieve a financial statement

Not available yet

This operation is described here and is not served. A call to it returns 404. The data layer has no way to look a statement up by its id. Statements are reachable through their company, at GET /companies/{company_id}/financial-statements.

GET
/financial-statements/{financial_statement_id}

One annual financial statement with its extracted figures.

Costs 10 credits.

Authorization

bearerAuth
AuthorizationBearer <token>

Your API key, sent as Authorization: Bearer rc_live_….

In: header

Path Parameters

financial_statement_id*string

The financial statement's id.

Formatuuid

Response Body

application/json

application/problem+json

application/problem+json

application/problem+json

application/problem+json

application/problem+json

curl -X GET "https://example.com/financial-statements/497f6eca-6276-4993-bfeb-53cbbbba6f08"
{  "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",  "object": "financial_statement",  "company_id": "b2e6a1c3-1a5e-44ae-a8fd-81f76fd715cf",  "title": "string",  "period": {    "fiscal_year": 0,    "start_date": "2019-08-24",    "end_date": "2019-08-24"  },  "published_date": "2019-08-24",  "consolidated": true,  "language": "string",  "source_url": "http://example.com",  "content_url": "http://example.com",  "figures": {    "currency": "EUR",    "employees": 0,    "other_financial_obligations": "string",    "balance_sheet": {      "total_assets": "25000.00",      "fixed_assets": "25000.00",      "current_assets": "25000.00",      "cash": "25000.00",      "total_equity_and_liabilities": "25000.00",      "equity": "25000.00",      "liabilities": "25000.00",      "provisions": "25000.00",      "subscribed_capital": "25000.00",      "capital_reserve": "25000.00",      "bank_loans": "25000.00",      "liabilities_to_shareholders": "25000.00"    },    "income_statement": {      "revenue": "25000.00",      "total_output": "25000.00",      "gross_profit": "25000.00",      "personnel_expenses": "25000.00",      "depreciation": "25000.00",      "other_operating_expenses": "25000.00",      "ebitda": "25000.00",      "ebit": "25000.00",      "financial_result": "25000.00",      "interest_income": "25000.00",      "interest_expenses": "25000.00",      "income_taxes": "25000.00",      "net_income": "25000.00"    }  }}