> ## Documentation Index
> Fetch the complete documentation index at: https://docs.anysite.io/llms.txt
> Use this file to discover all available pages before exploring further.

# /brreg/companies/accounts

> Get the submitted annual financial statements of a Norwegian legal entity by its organization number from the Register of Company Accounts (Regnskapsregisteret). Each statement includes the accounting period, currency, accounting rules, balance sheet totals (assets, equity, liabilities) and the income statement (operating income/costs/result, net financial items, result before tax, annual result).

**Price:** 1 credit

**⚠️ Common errors:** 412: No legal entity found for the given organization number



## OpenAPI

````yaml /openapi/company-registries.json post /api/brreg/companies/accounts
openapi: 3.1.0
info:
  title: Any Site API
  description: >+
    Any Site API provides programmatic access to data from LinkedIn, Instagram,
    Twitter, and other platforms.


    ## Authentication


    All API endpoints require an `access-token` header with a valid API token.
    Tokens can be created in the [dashboard](https://app.anysite.io/).


    ## Pricing


    Each endpoint has a credit cost listed in its description. Credits are
    deducted from your token balance per request.

  version: 0.0.1
servers: []
security:
  - AccessToken: []
paths:
  /api/brreg/companies/accounts:
    post:
      tags:
        - /brreg
      summary: /brreg/companies/accounts
      description: >-
        Get the submitted annual financial statements of a Norwegian legal
        entity by its organization number from the Register of Company Accounts
        (Regnskapsregisteret). Each statement includes the accounting period,
        currency, accounting rules, balance sheet totals (assets, equity,
        liabilities) and the income statement (operating income/costs/result,
        net financial items, result before tax, annual result).


        **Price:** 1 credit


        **⚠️ Common errors:** 412: No legal entity found for the given
        organization number
      operationId: __api_brreg_companies_accounts_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/BrregCompaniesAccountsPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/BrregAccount'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    BrregCompaniesAccountsPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        organization_number:
          type: string
      type: object
      required:
        - organization_number
    BrregAccount:
      properties:
        '@type':
          type: string
          default: BrregAccount
        id:
          anyOf:
            - type: string
            - type: 'null'
        journal_number:
          anyOf:
            - type: string
            - type: 'null'
        accounts_type:
          anyOf:
            - type: string
            - type: 'null'
        organization_form:
          anyOf:
            - type: string
            - type: 'null'
        is_parent_company:
          anyOf:
            - type: boolean
            - type: 'null'
        period_from:
          anyOf:
            - type: string
            - type: 'null'
        period_to:
          anyOf:
            - type: string
            - type: 'null'
        currency:
          anyOf:
            - type: string
            - type: 'null'
        accounting_rules:
          anyOf:
            - type: string
            - type: 'null'
        is_small_company:
          anyOf:
            - type: boolean
            - type: 'null'
        is_liquidation_accounts:
          anyOf:
            - type: boolean
            - type: 'null'
        is_audited:
          anyOf:
            - type: boolean
            - type: 'null'
        total_assets:
          anyOf:
            - type: number
            - type: 'null'
        total_current_assets:
          anyOf:
            - type: number
            - type: 'null'
        total_fixed_assets:
          anyOf:
            - type: number
            - type: 'null'
        total_equity_and_liabilities:
          anyOf:
            - type: number
            - type: 'null'
        total_equity:
          anyOf:
            - type: number
            - type: 'null'
        total_liabilities:
          anyOf:
            - type: number
            - type: 'null'
        total_short_term_liabilities:
          anyOf:
            - type: number
            - type: 'null'
        total_long_term_liabilities:
          anyOf:
            - type: number
            - type: 'null'
        operating_income:
          anyOf:
            - type: number
            - type: 'null'
        operating_costs:
          anyOf:
            - type: number
            - type: 'null'
        operating_result:
          anyOf:
            - type: number
            - type: 'null'
        net_financial_items:
          anyOf:
            - type: number
            - type: 'null'
        result_before_tax:
          anyOf:
            - type: number
            - type: 'null'
        annual_result:
          anyOf:
            - type: number
            - type: 'null'
      type: object
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
        msg:
          type: string
        type:
          type: string
        input: {}
        ctx:
          type: object
      type: object
      required:
        - loc
        - msg
        - type
  securitySchemes:
    AccessToken:
      type: apiKey
      in: header
      name: access-token
      description: API token from the dashboard

````