Skip to content

Latest commit

 

History

History
87 lines (65 loc) · 2.34 KB

File metadata and controls

87 lines (65 loc) · 2.34 KB

Apify CLI — Brreg Norway Company Registry Scraper

Run the Brreg Norway Company Registry Scraper Actor from your terminal with the Apify CLI. These are client-side usage examples — you call the hosted Actor, you don't run any scraping code locally.

Install & log in (once)

npm install -g apify-cli
apify login   # paste your API token from https://console.apify.com/settings/integrations

Run with defaults

apify call logiover/brreg-norway-company-scraper

Marketing & advertising agencies in Oslo (solvent only)

apify call logiover/brreg-norway-company-scraper --input='{
  "naeringskode": "73.110",
  "kommunenummer": "0301",
  "konkurs": "false",
  "maxResults": 1000
}'

VAT-registered accounting firms (active, contactable)

apify call logiover/brreg-norway-company-scraper --input='{
  "naeringskode": "69.201",
  "registrertIMvaregisteret": "true",
  "maxResults": 2000
}'

Software companies with CEO / chair enrichment

apify call logiover/brreg-norway-company-scraper --input='{
  "naeringskode": "62.010",
  "konkurs": "false",
  "includeRoles": true,
  "rolesConcurrency": 6,
  "maxResults": 500
}'

Newly registered companies (last quarter)

apify call logiover/brreg-norway-company-scraper --input='{
  "fraRegistreringsdatoEnhetsregisteret": "2026-04-01",
  "organisasjonsform": "AS",
  "maxResults": 1000
}'

Read the input from a file

# input.json holds your filters
apify call logiover/brreg-norway-company-scraper --input="$(cat input.json)"

Download the dataset after a run

# CSV
apify datasets get-items <DATASET_ID> --format=csv > norway_companies.csv

# JSON
apify datasets get-items <DATASET_ID> --format=json > norway_companies.json

The <DATASET_ID> is printed at the end of the run (the run's default dataset).

Tips

  • Every input is optional — start empty, then narrow by industry + municipality.
  • Filter konkurs=false and registrertIMvaregisteret=true for the best B2B leads.
  • Deep pagination is capped at ~10,000 per query — split large segments by kommunenummer or date range.
  • Schedule recurring runs from the Console → Schedules to keep a fresh Norway company feed.

▶️ Actor: https://apify.com/logiover/brreg-norway-company-scraper