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.
npm install -g apify-cli
apify login # paste your API token from https://console.apify.com/settings/integrationsapify call logiover/brreg-norway-company-scraperapify call logiover/brreg-norway-company-scraper --input='{
"naeringskode": "73.110",
"kommunenummer": "0301",
"konkurs": "false",
"maxResults": 1000
}'apify call logiover/brreg-norway-company-scraper --input='{
"naeringskode": "69.201",
"registrertIMvaregisteret": "true",
"maxResults": 2000
}'apify call logiover/brreg-norway-company-scraper --input='{
"naeringskode": "62.010",
"konkurs": "false",
"includeRoles": true,
"rolesConcurrency": 6,
"maxResults": 500
}'apify call logiover/brreg-norway-company-scraper --input='{
"fraRegistreringsdatoEnhetsregisteret": "2026-04-01",
"organisasjonsform": "AS",
"maxResults": 1000
}'# input.json holds your filters
apify call logiover/brreg-norway-company-scraper --input="$(cat input.json)"# CSV
apify datasets get-items <DATASET_ID> --format=csv > norway_companies.csv
# JSON
apify datasets get-items <DATASET_ID> --format=json > norway_companies.jsonThe <DATASET_ID> is printed at the end of the run (the run's default dataset).
- Every input is optional — start empty, then narrow by industry + municipality.
- Filter
konkurs=falseandregistrertIMvaregisteret=truefor the best B2B leads. - Deep pagination is capped at ~10,000 per query — split large segments by
kommunenummeror date range. - Schedule recurring runs from the Console → Schedules to keep a fresh Norway company feed.