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 Schema
{
"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": "info@novonordisk.com"
},
"country": {
"type": "string",
"description": "The country of the company",
"example": "Denmark"
}
}
}
curl --request GET \
--url "https://www.apikiss.com/api/v1/cvr?query=12345678" \
--header 'Authorization: Bearer <token>'
{
"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": "info@novonordisk.com"
},
"country": {
"type": "string",
"description": "The country of the company",
"example": "Denmark"
}
}
}
Response
Click "Send Request" to see the response...
Authorizations
Authorization
header
required
Authentication token in the format "Bearer <token>"