# Denmark CVR Company Scraper — Directors, Units & History (`neuralverge/neuralverge-cvr-company`) Actor

Scrape any Danish company from the official CVR (Virk) by CVR number — name, legal form, status, address, management & board, auditor, production units, NACE industry and full registration history. No API key. Structured JSON for KYB & due diligence. Pay only for matches.

- **URL**: https://apify.com/neuralverge/neuralverge-cvr-company.md
- **Developed by:** [NeuralVerge](https://apify.com/neuralverge) (community)
- **Categories:** Automation, Developer tools, Lead generation
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $5.00 / 1,000 results

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.

Learn more: https://docs.apify.com/platform/actors/running/actors-in-store#pay-per-event

## What's an Apify Actor?

Actors are a software tools running on the Apify platform, for all kinds of web data extraction and automation use cases.
In Batch mode, an Actor accepts a well-defined JSON input, performs an action which can take anything from a few seconds to a few hours,
and optionally produces a well-defined JSON output, datasets with results, or files in key-value store.
In Standby mode, an Actor provides a web server which can be used as a website, API, or an MCP server.
Actors are written with capital "A".

## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
The best way to integrate Actors is as follows.

In JavaScript/TypeScript projects, use official [JavaScript/TypeScript client](https://docs.apify.com/api/client/js/docs.md):

```bash
npm install apify-client
```

In Python projects, use official [Python client library](https://docs.apify.com/api/client/python/docs.md):

```bash
pip install apify-client
```

In shell scripts, use [Apify CLI](https://docs.apify.com/cli/docs.md):

````bash
# MacOS / Linux
curl -fsSL https://apify.com/install-cli.sh | bash
# Windows
irm https://apify.com/install-cli.ps1 | iex
```bash

In AI frameworks, you might use the [Apify MCP server](https://docs.apify.com/integrations/mcp.md).

If your project is in a different language, use the [REST API](https://docs.apify.com/api/v2.md).

For usage examples, see the [API](#api) section below.

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).


# README

### Denmark CVR Company Scraper — Financials, Owners & Management ✅ No API Key

Scrape any **Danish CVR (datacvr.virk.dk) company profile** from its CVR number —
legal name, address, company type, status, industry code, purpose, power to bind,
directors & board (key individuals), auditor, ownership, annual financial statements,
production units (P-enheder) and the full Danish registration history. Powered by the
Neuralverge API. **No API key or account required**, and **you only pay for companies
we actually find**.

Ideal for KYC/KYB, due diligence, compliance, credit checks and feeding company data
to AI agents.

### ✨ Why this Actor

- 🇩🇰 **Full CVR profile** — identity, governance, ownership, financials, production
  units and registration history in one structured object.
- 💸 **Pay only for the companies you get** — unresolved CVR numbers are skipped and
  never billed. Misses are free; no empty, billable rows.
- 🔑 **No API key or account** — extraction runs on the Neuralverge backend.
- ⚡ **Real-time & structured** — fresh data each run and one predictable JSON schema.

### 🔧 How it works

1. **Provide a Danish CVR number** (e.g. `39697696`) — or an advanced full
   datacvr.virk.dk profile URL.
2. **Run the Actor.** Fetching and AI-structuring the profile happens on the Neuralverge
   backend.
3. **Get one dataset row per company** — the source `url`, the extraction `settings`
   (including the JSON schema) and the structured `machine` object. Export to CSV,
   JSON or Excel, or pull it over the Apify API.

If the company can't be resolved, it's logged and **skipped without charge**.

### Input

One company per run.

| Field | Type | Notes |
|---|---|---|
| `companyNumber` | string | The Danish CVR number (CVR-nummer), e.g. `39697696`. |
| `companyUrl` | string | Advanced: a full datacvr.virk.dk profile URL to use instead of the CVR number. |

```json
{
  "companyNumber": "39697696"
}
````

### What you'll receive

Each dataset row mirrors the Neuralverge system output and has three top-level blocks:

- **`url`** — the datacvr.virk.dk profile URL that was scraped.
- **`settings`** — the extraction settings, including the full JSON schema used, at
  `settings.extract_schema_json`.
- **`machine`** — the structured result with these sections: `general_information`
  (cvr\_number, company\_name, address, start\_date, company\_type, status),
  `expanded_business_information` (industry code, purpose, contact), `governance`
  (power\_to\_bind, key\_individuals, auditor), `ownership`, `financial_statements`,
  `production_units`, `registration_history_danish`, `historical_basic_data`,
  `number_of_employees`, `order_other_documents_danish`.

> **Nulls & empty sections are normal.** Only data present on the profile is filled —
> e.g. `ownership` and `historical_basic_data` can be empty, and financial figures may be
> `null` when a statement isn't published. Registration history (`registration_history_danish`)
> and some labels are kept in the original Danish, exactly as the register publishes them.

#### Example output (real run)

A real dataset row from `https://datacvr.virk.dk/enhed/virksomhed/39697696`, shown **in
full** — including the complete extraction **schema** (`settings.extract_schema_json`) and
the full **machine-readable result** (`machine`). The `human` markdown summary is produced
by the system but omitted from the dataset.

```json
{
  "url": "https://datacvr.virk.dk/enhed/virksomhed/39697696",
  "settings": {
    "has_schema": true,
    "country_code": "us",
    "extract_schema_json": {
      "type": "object",
      "properties": {
        "general_information": {
          "type": "object",
          "description": "Basic, general information about the company.",
          "properties": {
            "cvr_number": {
              "type": "string",
              "description": "The unique CVR number of the company."
            },
            "company_name": {
              "type": "string",
              "description": "The legal name of the company."
            },
            "address": {
              "type": "string",
              "description": "The registered legal address of the company."
            },
            "start_date": {
              "type": "string",
              "format": "date",
              "description": "The date the company was established."
            },
            "company_type": {
              "type": "string",
              "description": "The legal form of the company (e.g., A/S, ApS)."
            },
            "status": {
              "type": "string",
              "description": "The current operational status of the company (e.g., Normal, Inaktiv)."
            }
          },
          "required": [
            "cvr_number",
            "company_name"
          ]
        },
        "expanded_business_information": {
          "type": "object",
          "description": "More detailed information about the company's business activities.",
          "properties": {
            "industry_code": {
              "type": "string",
              "description": "The primary industry code and description."
            },
            "secondary_industry_codes": {
              "type": "array",
              "description": "List of secondary industry codes and descriptions.",
              "items": {
                "type": "string"
              }
            },
            "company_purpose": {
              "type": "string",
              "description": "The stated purpose or objective of the company."
            },
            "contact_information": {
              "type": "object",
              "properties": {
                "phone_number": {
                  "type": "string",
                  "description": "Official phone number."
                },
                "email": {
                  "type": "string",
                  "description": "Official email address."
                },
                "website": {
                  "type": "string",
                  "description": "Official company website."
                }
              }
            }
          }
        },
        "governance": {
          "type": "object",
          "description": "Information about company management, power to bind, and auditors.",
          "properties": {
            "power_to_bind": {
              "type": "string",
              "description": "The rule describing who has the authority to legally bind the company."
            },
            "key_individuals": {
              "type": "array",
              "description": "A list of key individuals in the company, such as directors and board members.",
              "items": {
                "type": "object",
                "properties": {
                  "name": {
                    "type": "string",
                    "description": "The full name of the individual."
                  },
                  "role": {
                    "type": "string",
                    "description": "The individual's role or title (e.g., CEO, Bestyrelsesformand)."
                  },
                  "joined_on": {
                    "type": "string",
                    "format": "date",
                    "description": "The date the individual joined this role."
                  }
                },
                "required": [
                  "name",
                  "role"
                ]
              }
            },
            "auditor": {
              "type": "object",
              "description": "Information about the company's auditor, if any.",
              "properties": {
                "name": {
                  "type": "string",
                  "description": "The name of the auditing firm or individual."
                },
                "cvr_number": {
                  "type": "string",
                  "description": "The CVR number of the auditing firm."
                },
                "address": {
                  "type": "string",
                  "description": "The address of the auditor."
                }
              }
            }
          }
        },
        "ownership": {
          "type": "array",
          "description": "A list of owners, both real and legal, with significant holdings.",
          "items": {
            "type": "object",
            "properties": {
              "owner_name": {
                "type": "string",
                "description": "The name of the owner (person or company)."
              },
              "ownership_percentage": {
                "type": "string",
                "description": "The percentage or range of ownership."
              },
              "nationality_or_country": {
                "type": "string",
                "description": "Nationality of the person or country of incorporation for the company."
              }
            },
            "required": [
              "owner_name"
            ]
          }
        },
        "financial_statements": {
          "type": "array",
          "description": "A list of historical annual financial statements.",
          "items": {
            "type": "object",
            "properties": {
              "year": {
                "type": "integer",
                "description": "The fiscal year of the report."
              },
              "gross_profit": {
                "type": "number",
                "description": "Bruttofortjeneste."
              },
              "profit_loss_before_tax": {
                "type": "number",
                "description": "Resultat før skat."
              },
              "profit_loss": {
                "type": "number",
                "description": "Årets resultat (profit/loss for the year)."
              },
              "equity": {
                "type": "number",
                "description": "Egenkapital (total equity)."
              },
              "total_assets": {
                "type": "number",
                "description": "Balance (total assets)."
              },
              "currency": {
                "type": "string",
                "description": "The currency of the financial figures (e.g., DKK)."
              }
            },
            "required": [
              "year"
            ]
          }
        },
        "production_units": {
          "type": "array",
          "description": "A list of production units (P-enheder) associated with the company.",
          "items": {
            "type": "object",
            "properties": {
              "p_number": {
                "type": "string",
                "description": "The unique P-number of the production unit."
              },
              "name": {
                "type": "string",
                "description": "The name of the production unit."
              },
              "address": {
                "type": "string",
                "description": "The address of the production unit."
              },
              "start_date": {
                "type": "string",
                "format": "date",
                "description": "The start date of the production unit."
              },
              "industry_code": {
                "type": "string",
                "description": "The industry code and description for the unit."
              }
            },
            "required": [
              "p_number",
              "name",
              "address"
            ]
          }
        },
        "registration_history_danish": {
          "type": "array",
          "description": "A chronological list of official registration events in Danish.",
          "items": {
            "type": "object",
            "properties": {
              "date": {
                "type": "string",
                "format": "date-time",
                "description": "The date and time of the registration event."
              },
              "event_description_danish": {
                "type": "string",
                "description": "The description of the event as registered, in Danish."
              }
            },
            "required": [
              "date",
              "event_description_danish"
            ]
          }
        },
        "historical_basic_data": {
          "type": "array",
          "description": "A log of changes to the company's basic data over time.",
          "items": {
            "type": "object",
            "properties": {
              "valid_from": {
                "type": "string",
                "format": "date",
                "description": "The date from which this data was valid."
              },
              "field_changed": {
                "type": "string",
                "description": "The data field that was changed (e.g., Name, Address)."
              },
              "value": {
                "type": "string",
                "description": "The value of the field during this period."
              }
            },
            "required": [
              "valid_from",
              "field_changed",
              "value"
            ]
          }
        },
        "number_of_employees": {
          "type": "string",
          "description": "The most recently reported number of employees, often as a range (e.g., '10-19 ansatte')."
        },
        "order_other_documents_danish": {
          "type": "array",
          "description": "A list of other available documents that can be ordered, with descriptions in Danish.",
          "items": {
            "type": "object",
            "properties": {
              "document_name_danish": {
                "type": "string",
                "description": "The name of the document in Danish (e.g., 'Vedtægter')."
              },
              "last_updated": {
                "type": "string",
                "format": "date",
                "description": "The date the document was last updated."
              }
            }
          }
        }
      },
      "required": [
        "general_information"
      ]
    }
  },
  "machine": {
    "general_information": {
      "cvr_number": "39697696",
      "company_name": "Lunar Bank A/S",
      "address": "Hack Kampmanns Plads 10\n8000 Aarhus C",
      "start_date": "2018-07-02",
      "company_type": "Aktieselskab",
      "status": "Normal"
    },
    "expanded_business_information": {
      "industry_code": "641900 Andre pengeinstitutters aktiviteter",
      "secondary_industry_codes": [],
      "company_purpose": "Selskabets formål er at drive bankvirksomhed samt anden accessorisk virksomhed tilladt i henhold til lovgivningen.",
      "contact_information": null
    },
    "governance": {
      "power_to_bind": "Selskabet tegnes af en direktør i forening med et bestyrelsesmedlem, af to medlemmer af bestyrelsen eller af den samlede bestyrelse.",
      "key_individuals": [
        {
          "name": "Søren Kyhl",
          "role": "(Adm. dir)",
          "joined_on": null
        },
        {
          "name": "Gitte Margrethe Roskær",
          "role": "(Direktør)",
          "joined_on": null
        },
        {
          "name": "Joakim Skaarup Hansen",
          "role": "(Direktør)",
          "joined_on": null
        },
        {
          "name": "Robert Nils Stambro",
          "role": "(Direktør)",
          "joined_on": null
        },
        {
          "name": "Jens Peter Leschly Neergaard",
          "role": "(Formand)",
          "joined_on": null
        },
        {
          "name": "Claus Okholm",
          "role": null,
          "joined_on": null
        },
        {
          "name": "Ken Villum Guldbrandt Klausen",
          "role": null,
          "joined_on": null
        },
        {
          "name": "Jens Mikael Kristoffer Ismunden",
          "role": null,
          "joined_on": null
        },
        {
          "name": "Ola Reinhold Nordbye",
          "role": null,
          "joined_on": null
        },
        {
          "name": "Matthew Crispin Hurst Westerman",
          "role": null,
          "joined_on": null
        },
        {
          "name": "Annica Maria Witschard",
          "role": null,
          "joined_on": null
        }
      ],
      "auditor": {
        "name": "PRICEWATERHOUSECOOPERS STATSAUTORISERET REVISIONSPARTNERSELSKAB",
        "cvr_number": null,
        "address": "Strandvejen 44\n2900 Hellerup"
      }
    },
    "ownership": [],
    "financial_statements": [
      {
        "year": 2025,
        "gross_profit": null,
        "profit_loss_before_tax": null,
        "profit_loss": null,
        "equity": null,
        "total_assets": null,
        "currency": "DKK"
      },
      {
        "year": 2024,
        "gross_profit": null,
        "profit_loss_before_tax": null,
        "profit_loss": null,
        "equity": null,
        "total_assets": null,
        "currency": "DKK"
      },
      {
        "year": 2023,
        "gross_profit": null,
        "profit_loss_before_tax": null,
        "profit_loss": null,
        "equity": null,
        "total_assets": null,
        "currency": "DKK"
      },
      {
        "year": 2022,
        "gross_profit": null,
        "profit_loss_before_tax": null,
        "profit_loss": null,
        "equity": null,
        "total_assets": null,
        "currency": "DKK"
      },
      {
        "year": 2021,
        "gross_profit": null,
        "profit_loss_before_tax": null,
        "profit_loss": null,
        "equity": null,
        "total_assets": null,
        "currency": "DKK"
      },
      {
        "year": 2020,
        "gross_profit": null,
        "profit_loss_before_tax": null,
        "profit_loss": null,
        "equity": null,
        "total_assets": null,
        "currency": "DKK"
      },
      {
        "year": 2019,
        "gross_profit": null,
        "profit_loss_before_tax": null,
        "profit_loss": null,
        "equity": null,
        "total_assets": null,
        "currency": "DKK"
      },
      {
        "year": 2018,
        "gross_profit": null,
        "profit_loss_before_tax": null,
        "profit_loss": null,
        "equity": null,
        "total_assets": null,
        "currency": "DKK"
      }
    ],
    "production_units": [
      {
        "p_number": "1025681610",
        "name": "Lunar Bank A/S",
        "address": "Bredgade 43\n1260 København K",
        "start_date": "2020-01-01",
        "industry_code": "641900 Andre pengeinstitutters aktiviteter"
      },
      {
        "p_number": "1023764349",
        "name": "Lunar Bank A/S",
        "address": "Hack Kampmanns Plads 10\n8000 Aarhus C",
        "start_date": "2018-07-02",
        "industry_code": "641900 Andre pengeinstitutters aktiviteter"
      }
    ],
    "registration_history_danish": [
      {
        "date": "2026-06-19T00:00:00Z",
        "event_description_danish": "Ændring i personkreds\n\nCVR-nummer: 39697696\n\nNavn og adresse: Lunar Bank A/S Hack Kampmanns Plads 10, 8000 Aarhus C\n\n# Bestyrelse: ## Tiltrådte: [Ken Villum Guldbrandt Klausen](https://datacvr.virk.dk/enhed/person/4004083032/deltager) , den 02.06.2026. # Direktion: ## Fratrådte: Ken Villum Guldbrandt Klausen, (adm. dir), den 01.06.2026. ## Tiltrådte: [Søren Kyhl](https://datacvr.virk.dk/enhed/person/4006430035/deltager) , (adm. dir), den 01.06.2026."
      },
      {
        "date": "2026-06-01T00:00:00Z",
        "event_description_danish": "Ændring i personkreds\n\nCVR-nummer: 39697696\n\nNavn og adresse: Lunar Bank A/S Hack Kampmanns Plads 10, 8000 Aarhus C\n\n# Bestyrelse: ## Fratrådte: Lars Andersen, den 29.04.2026, Klaus Østergaard, den 29.04.2026. ## Tiltrådte: [Annica Maria Witschard](https://datacvr.virk.dk/enhed/person/4010786807/deltager) , den 29.04.2026."
      },
      {
        "date": "2026-05-19T00:00:00Z",
        "event_description_danish": "Ændring i personkreds\n\nCVR-nummer: 39697696\n\nNavn og adresse: Lunar Bank A/S Hack Kampmanns Plads 10, 8000 Aarhus C\n\n# Direktion: ## Fratrådte: Ken Villum Guldbrandt Klausen, den 01.05.2026. ## Tiltrådte: [Ken Villum Guldbrandt Klausen](https://datacvr.virk.dk/enhed/person/4004083032/deltager) , (adm. dir), den 01.05.2026."
      },
      {
        "date": "2026-03-20T00:00:00Z",
        "event_description_danish": "Ændring i personkreds\n\nCVR-nummer: 39697696\n\nNavn og adresse: Lunar Bank A/S Hack Kampmanns Plads 10, 8000 Aarhus C\n\n# Direktion: ## Fratrådte: Jonas Kjær Leed, den 01.03.2026. ## Tiltrådte: [Joakim Skaarup Hansen](https://datacvr.virk.dk/enhed/person/4010736765/deltager) , den 01.03.2026, [Gitte Margrethe Roskær](https://datacvr.virk.dk/enhed/person/4004179563/deltager) , den 01.03.2026."
      },
      {
        "date": "2026-01-27T00:00:00Z",
        "event_description_danish": "Ændring i personkreds\n\nCVR-nummer: 39697696\n\nNavn og adresse: Lunar Bank A/S Hack Kampmanns Plads 10, 8000 Aarhus C\n\n# Bestyrelse: ## Fratrådte: Jens Peter Leschly Neergaard, den 12.01.2026, Timothy Tracy Brooke Thom, (formand), den 12.01.2026. ## Tiltrådte: [Jens Peter Leschly Neergaard](https://datacvr.virk.dk/enhed/person/4007809328/deltager) , (formand), den 12.01.2026, [Matthew Crispin Hurst Westerman](https://datacvr.virk.dk/enhed/person/4010645786/deltager) , den 30.12.2025."
      },
      {
        "date": "2026-01-08T00:00:00Z",
        "event_description_danish": "Gennemførelse af fusion eller spaltning\n\nCVR-nummer: 39697696\n\nNavn og adresse: Lunar Bank A/S Hack Kampmanns Plads 10, 8000 Aarhus C\n\nErhvervsstyrelsen har modtaget oplysning om, at der er truffet beslutning om nedenstående fusion. Virksomheden er fusioneret med CVR-nummer: 36683279 Lunar Payments ApS, der samtidigt er opløst. Vedtægter ændret: 30.12.2025  \n\nNye binavne: Lunar Payments A/S, Paylike A/S  \n\nKapitalforhøjelsen er besluttet den 30.12.2025.  \n\nkr. 1,00, indbetalt ved fusion, kurs 16.686.538,93.  \n\nKapitalen udgør herefter kr. 42.077.081,00."
      }
    ],
    "historical_basic_data": [],
    "number_of_employees": null,
    "order_other_documents_danish": []
  }
}
```

> Genuine output from a live run — Lunar Bank A/S, with 11 key individuals, an auditor,
> two production units and six Danish registration-history events resolved.

### Pricing

Pay per result — **$0.005 per company** ($5 per 1,000) returned to the dataset. **You
pay only for rows returned — misses are free.**

| Event | Price |
|---|---|
| Actor start | Free |
| Company returned (per dataset row) | **$0.005** |

CVR numbers that can't be resolved are **not billed**. Pricing is on top of your Apify
platform usage.

### Integrations & API

Results are stored in a standard Apify dataset — export as CSV, JSON, XML or Excel,
or fetch on demand through the [Apify API](https://docs.apify.com/api). The Actor
also plugs into Apify's integrations (Make, Zapier, n8n, webhooks) and can be called
from any [MCP](https://mcp.apify.com/) client.

### FAQ

**Do I need an account or API key?** No. Extraction runs on the Neuralverge backend.

**What identifier do I use?** The Danish CVR number (CVR-nummer) — an 8-digit number
like `39697696`. You can also pass a full datacvr.virk.dk profile URL.

**Am I charged if a company isn't found?** No. You're billed only for rows returned
to the dataset.

***

**Disclaimer:** This Actor is an independent tool and is not affiliated with, endorsed
by, or sponsored by the Danish Business Authority (Erhvervsstyrelsen) or CVR. Data
originates from the public datacvr.virk.dk register.

# Actor input Schema

## `companyNumber` (type: `string`):

The Danish CVR number (CVR-nummer) to look up, e.g. 39697696.

## `companyUrl` (type: `string`):

Optional. A full datacvr.virk.dk company URL to use instead of the CVR number, e.g. https://datacvr.virk.dk/enhed/virksomhed/39697696.

## Actor input object example

```json
{
  "companyNumber": "39697696"
}
```

# Actor output Schema

## `results` (type: `string`):

Structured CVR company data (identity, governance, production units, registration history), one row per matched company.

# API

You can run this Actor programmatically using our API. Below are code examples in JavaScript, Python, and CLI, as well as the OpenAPI specification and MCP server setup.

## JavaScript example

```javascript
import { ApifyClient } from 'apify-client';

// Initialize the ApifyClient with your Apify API token
// Replace the '<YOUR_API_TOKEN>' with your token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {
    "companyNumber": "39697696"
};

// Run the Actor and wait for it to finish
const run = await client.actor("neuralverge/neuralverge-cvr-company").call(input);

// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
    console.dir(item);
});

// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

```

## Python example

```python
from apify_client import ApifyClient

# Initialize the ApifyClient with your Apify API token
# Replace '<YOUR_API_TOKEN>' with your token.
client = ApifyClient("<YOUR_API_TOKEN>")

# Prepare the Actor input
run_input = { "companyNumber": "39697696" }

# Run the Actor and wait for it to finish
run = client.actor("neuralverge/neuralverge-cvr-company").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{
  "companyNumber": "39697696"
}' |
apify call neuralverge/neuralverge-cvr-company --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=neuralverge/neuralverge-cvr-company",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Denmark CVR Company Scraper — Directors, Units & History",
        "description": "Scrape any Danish company from the official CVR (Virk) by CVR number — name, legal form, status, address, management & board, auditor, production units, NACE industry and full registration history. No API key. Structured JSON for KYB & due diligence. Pay only for matches.",
        "version": "0.1",
        "x-build-id": "A4ouY1rNnsdeUzNG8"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/neuralverge~neuralverge-cvr-company/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-neuralverge-neuralverge-cvr-company",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for its completion, and returns Actor's dataset items in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        },
        "/acts/neuralverge~neuralverge-cvr-company/runs": {
            "post": {
                "operationId": "runs-sync-neuralverge-neuralverge-cvr-company",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor and returns information about the initiated run in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "$ref": "#/components/schemas/runsResponseSchema"
                                }
                            }
                        }
                    }
                }
            }
        },
        "/acts/neuralverge~neuralverge-cvr-company/run-sync": {
            "post": {
                "operationId": "run-sync-neuralverge-neuralverge-cvr-company",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for completion, and returns the OUTPUT from Key-value store in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        }
    },
    "components": {
        "schemas": {
            "inputSchema": {
                "type": "object",
                "properties": {
                    "companyNumber": {
                        "title": "CVR number",
                        "type": "string",
                        "description": "The Danish CVR number (CVR-nummer) to look up, e.g. 39697696."
                    },
                    "companyUrl": {
                        "title": "Company profile URL (advanced)",
                        "type": "string",
                        "description": "Optional. A full datacvr.virk.dk company URL to use instead of the CVR number, e.g. https://datacvr.virk.dk/enhed/virksomhed/39697696."
                    }
                }
            },
            "runsResponseSchema": {
                "type": "object",
                "properties": {
                    "data": {
                        "type": "object",
                        "properties": {
                            "id": {
                                "type": "string"
                            },
                            "actId": {
                                "type": "string"
                            },
                            "userId": {
                                "type": "string"
                            },
                            "startedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "finishedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "status": {
                                "type": "string",
                                "example": "READY"
                            },
                            "meta": {
                                "type": "object",
                                "properties": {
                                    "origin": {
                                        "type": "string",
                                        "example": "API"
                                    },
                                    "userAgent": {
                                        "type": "string"
                                    }
                                }
                            },
                            "stats": {
                                "type": "object",
                                "properties": {
                                    "inputBodyLen": {
                                        "type": "integer",
                                        "example": 2000
                                    },
                                    "rebootCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "restartCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "resurrectCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "computeUnits": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "options": {
                                "type": "object",
                                "properties": {
                                    "build": {
                                        "type": "string",
                                        "example": "latest"
                                    },
                                    "timeoutSecs": {
                                        "type": "integer",
                                        "example": 300
                                    },
                                    "memoryMbytes": {
                                        "type": "integer",
                                        "example": 1024
                                    },
                                    "diskMbytes": {
                                        "type": "integer",
                                        "example": 2048
                                    }
                                }
                            },
                            "buildId": {
                                "type": "string"
                            },
                            "defaultKeyValueStoreId": {
                                "type": "string"
                            },
                            "defaultDatasetId": {
                                "type": "string"
                            },
                            "defaultRequestQueueId": {
                                "type": "string"
                            },
                            "buildNumber": {
                                "type": "string",
                                "example": "1.0.0"
                            },
                            "containerUrl": {
                                "type": "string"
                            },
                            "usage": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "integer",
                                        "example": 1
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "usageTotalUsd": {
                                "type": "number",
                                "example": 0.00005
                            },
                            "usageUsd": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "number",
                                        "example": 0.00005
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
