CVR
Query the Danish Business Registry (CVR) to retrieve detailed company information including name, address, company type, status, and founding date using search criteria such as company name, CVR number, or address.
Search company by a name or CVR number
Returns a list of companies matching the specified criteria.
GET
                    
                        /
                        cvr
                    
                  Parameters
| Name | Type | Description | Required | 
|---|---|---|---|
| query | string | The name or CVR number for which to get the value | Required | 
Response
{
  "type": "object",
  "properties": {
    "cvr": {
      "type": "string",
      "description": "The CVR number for the company",
      "example": "DK12345678"
    },
    "name": {
      "type": "string",
      "description": "The name of the company",
      "example": "Novo Nordisk A/S"
    },
    "address": {
      "type": "string",
      "description": "The address of the company",
      "example": "Novo Allé 1"
    },
    "postal_code": {
      "type": "string",
      "description": "The postal code of the company",
      "example": "2880"
    },
    "city": {
      "type": "string",
      "description": "The city of the company",
      "example": "Bagsværd"
    },
    "phone": {
      "type": "string",
      "description": "The phone number of the company",
      "example": "+45 44448888"
    },
    "email": {
      "type": "string",
      "description": "The email address of the company",
      "example": "[email protected]"
    },
    "country": {
      "type": "string",
      "description": "The country of the company",
      "example": "Denmark"
    }
  }
}
                      Authorizations
                        Authorization
                      
                      
                          header
                        
                        
                          required
                        
                      Authentication token in the format "Bearer <token>"