Skip to main content
POST
/
api
/
brreg
/
companies
/
accounts
/brreg/companies/accounts
curl --request POST \
  --url https://api.anysite.io/api/brreg/companies/accounts \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "organization_number": "<string>",
  "timeout": 300
}
'
[
  {
    "@type": "@brreg_account",
    "id": "<string>",
    "journal_number": "<string>",
    "accounts_type": "<string>",
    "organization_form": "<string>",
    "is_parent_company": true,
    "period_from": "<string>",
    "period_to": "<string>",
    "currency": "<string>",
    "accounting_rules": "<string>",
    "is_small_company": true,
    "is_liquidation_accounts": true,
    "is_audited": true,
    "total_assets": 123,
    "total_current_assets": 123,
    "total_fixed_assets": 123,
    "total_equity_and_liabilities": 123,
    "total_equity": 123,
    "total_liabilities": 123,
    "total_short_term_liabilities": 123,
    "total_long_term_liabilities": 123,
    "operating_income": 123,
    "operating_costs": 123,
    "operating_result": 123,
    "net_financial_items": 123,
    "result_before_tax": 123,
    "annual_result": 123
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
organization_number
string
required

Norwegian organization number (9 digits)

Example:

"923609016"

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

@type
string
default:@brreg_account
id
string | null
journal_number
string | null
accounts_type
string | null
organization_form
string | null
is_parent_company
boolean | null
period_from
string | null
period_to
string | null
currency
string | null
accounting_rules
string | null
is_small_company
boolean | null
is_liquidation_accounts
boolean | null
is_audited
boolean | null
total_assets
number | null
total_current_assets
number | null
total_fixed_assets
number | null
total_equity_and_liabilities
number | null
total_equity
number | null
total_liabilities
number | null
total_short_term_liabilities
number | null
total_long_term_liabilities
number | null
operating_income
number | null
operating_costs
number | null
operating_result
number | null
net_financial_items
number | null
result_before_tax
number | null
annual_result
number | null