Denmark Government Data API avatar

Denmark Government Data API

Pricing

Pay per usage

Go to Apify Store
Denmark Government Data API

Denmark Government Data API

Search 24 Danish government data sources — GLEIF LEI entities, Statistics Denmark (StatBank) business/health/property/construction data, clinical trials, PlanData building zones, parliament cases and votes, EUR-Lex directives, and TED procurement.

Pricing

Pay per usage

Rating

0.0

(0)

Developer

kane liu

kane liu

Maintained by Community

Actor stats

0

Bookmarked

1

Total users

0

Monthly active users

10 hours ago

Last modified

Share

Denmark Government Data Search

Search 24 official Danish government data sources in a single API call — GLEIF LEI entities, Statistics Denmark (StatBank) business, health, property and construction statistics, Danish clinical trials, PlanData building zones and local plans, Folketinget parliament cases and votes, EUR-Lex directives, and TED procurement notices. All data from official Danish government databases through the SIP Public Data Gateway.

Denmark Government Data Search is an Apify Actor that queries official Danish government databases across business, construction, health, legal, and procurement domains. Instead of navigating StatBank, PlanData, Folketinget, and sundhedsdata portals separately, you search them all at once.

The Actor calls the SIP Public Data Gateway — a unified API that normalizes responses from 24 Danish data products. No browser, no scraping — just HTTPS API calls.

  • One search, 24 sources — Query company data, building zones, health statistics, parliament records, and procurement simultaneously
  • Official government data — All sources are public databases from Statistics Denmark, PlanData, Folketinget, and Danish health authorities
  • Rich StatBank coverage — Business demographics, construction activity, property prices, health expenditure, municipal and regional accounts
  • Parliament transparency — Folketinget cases, votes, and legislative proceedings
  • Nordic market entry — Essential data for companies entering the Danish/Nordic market

Use cases

WhoWhat
Market researchersAccess StatBank business demographics, construction activity, and property statistics
Healthcare analystsSearch Danish clinical trials, health expenditure, and WHO health indicators
Property developersFind PlanData building zones, local plans, and StatBank property/construction data
Legal professionalsQuery EUR-Lex directives for Denmark and Folketinget legislative proceedings
Government contractorsMonitor TED procurement notices and public finance data
Nordic investorsAccess GLEIF LEI entities and business statistics for Danish companies

What data can Denmark Government Data Search extract?

SourceData typeExample fields
GLEIF LEIDanish LEI-registered entitieslegal_name, lei, entity_status
StatBank businessBusiness demographics and statisticsindicator, industry, value, period
StatBank constructionConstruction activity and permitsindicator, municipality, value
StatBank propertyProperty prices and transactionsarea, price_index, transactions
StatBank healthHealth system statisticsindicator, region, value
StatBank health expenditureHealthcare spending datacategory, expenditure, year
PlanData building zonesZoning and land usezone_type, municipality, area
PlanData local plansMunicipal planning documentsplan_name, municipality, status
Clinical trialsDanish clinical trialstitle, sponsor, phase, status
WHO health indicatorsHealth metrics for Denmarkindicator, value, year
Parliament casesFolketinget legislative casestitle, type, status, committee
Parliament votesParliamentary voting recordscase, result, date
EUR-Lex directivesEU directives applicable to Denmarktitle, celex, date
TED procurementEU procurement for Denmarktitle, buyer, value, deadline
StatBank govt financeGovernment revenue and expenditurecategory, amount, year
StatBank municipalMunicipal financial accountsmunicipality, indicator, value

How to search Danish data

  1. Open the Actor in Apify Console
  2. Enter search terms (e.g. "Novo Nordisk", "København", "bolig", "sundhed")
  3. Select data categories — business, construction, and health are on by default
  4. Click Start — the Actor queries all enabled sources in parallel
  5. Download results as JSON, CSV, or Excel

Example input

{
"searchTerms": ["Novo Nordisk", "Maersk"],
"includeBusiness": true,
"includeConstruction": false,
"includeHealth": false,
"includeLegal": false,
"includeProcurement": false,
"maxResultsPerSource": 50
}

Output

{
"legal_name": "Novo Nordisk A/S",
"lei": "549300I6KHWHOQO2XR19",
"entity_status": "ACTIVE",
"_product_id": "dk_gleif_lei",
"_source": "gleif_lei",
"_search_term": "Novo Nordisk",
"_collected_at": "2026-04-08T14:00:00Z"
}

How much does it cost?

Pay-per-event pricing at $3.00 per 1,000 records returned.

  • Company lookup (1 term, business only): ~$0.01–0.03
  • Full scan (3 terms, all 24 sources): ~$0.30–2.00

No browser overhead. Control costs with maxResultsPerSource.

Data sources (24 Danish products)

CategorySourcesCount
BusinessGLEIF LEI, StatBank business, business aggregate3
ConstructionPlanData (zones/local plans), StatBank (construction/property), construction aggregate5
HealthClinical trials, StatBank (health/expenditure/demographics), WHO indicators, health aggregate6
LegalEUR-Lex (directives/regulations), Folketinget (cases/votes), legal aggregate5
ProcurementTED procurement, StatBank (govt finance/municipal/regional accounts), procurement aggregate5

FAQ

Does it support Danish search terms? Yes. SIP passes terms directly to Danish APIs. StatBank and PlanData support Danish. GLEIF and EUR-Lex work with English.

What is StatBank? Statistics Denmark's statistical database (statistikbanken.dk) — the national statistics office providing detailed socioeconomic data across 2,000+ tables.

Can I access municipal-level data? Yes. StatBank municipal accounts and PlanData local plans provide kommune-level granularity.

Use as MCP Tool (AI Agent Integration)

This Actor works as an MCP tool — AI agents (Claude, GPT, Cursor) can discover and run it automatically.

Quick setup (Claude Desktop / Cursor / VS Code)

Add to your MCP config:

{
"mcpServers": {
"apify": {
"url": "https://mcp.apify.com",
"headers": {
"Authorization": "Bearer YOUR_APIFY_TOKEN"
}
}
}
}

Then ask your AI: "Search for Novo Nordisk in Danish government databases"

Direct API call

from apify_client import ApifyClient
client = ApifyClient("YOUR_APIFY_TOKEN")
run = client.actor("lentic_clockss/denmark-data-search").call(
run_input={"searchTerms": ["Novo Nordisk"], "maxResultsPerSource": 50}
)
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
print(item)

Other Data API Actors